Skip to content

Commit 3d1ce0d

Browse files
committed
Truncate secret hash using precision
Currently we are attempting to truncate the hash created using `bitcoin_hashes` by using the "width" formatting parameter instead of the "precision" parameter. `hex-conservative` truncates with the "precision" parameter as is expected since a hash is not an integral type. Use the formatting string `"{:.16}"` which is the "precision" formatting parameter.
1 parent 4b143d6 commit 3d1ce0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/secret.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ macro_rules! impl_display_secret {
4646
engine.input(&self.secret_bytes());
4747
let hash = sha256::Hash::from_engine(engine);
4848

49-
f.debug_tuple(stringify!($thing)).field(&format_args!("#{:016x}", hash)).finish()
49+
f.debug_tuple(stringify!($thing)).field(&format_args!("#{:.16}", hash)).finish()
5050
}
5151
}
5252

0 commit comments

Comments
 (0)