psbt::raw: Use hex::format_hex to format the raw key bytes

This commit is contained in:
Steven Roose 2020-12-22 12:22:43 +00:00 committed by Sebastian
parent 94b7371424
commit cdedb0a9d5
1 changed files with 3 additions and 7 deletions

View File

@ -20,7 +20,7 @@
use std::{fmt, io};
use consensus::encode::{self, ReadExt, WriteExt, Decodable, Encodable, VarInt, serialize, deserialize, MAX_VEC_SIZE};
use hashes::hex::ToHex;
use hashes::hex;
use util::psbt::Error;
/// A PSBT key in its raw byte form.
@ -62,12 +62,8 @@ pub struct ProprietaryKey<Subtype = ProprietaryType> where Subtype: Copy + From<
impl fmt::Display for Key {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(
f,
"type: {:#x}, key: {}",
self.type_value,
self.key[..].to_hex()
)
write!(f, "type: {:#x}, key: ", self.type_value)?;
hex::format_hex(&self.key[..], f)
}
}