Skip to content

Commit 55119c6

Browse files
authored
fix errors input.rs
1 parent 2d8ebb7 commit 55119c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bitcoin/src/psbt/map/input.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ pub struct Input {
102102
/// SHA256 hash to preimage map.
103103
#[cfg_attr(feature = "serde", serde(with = "crate::serde_utils::btreemap_byte_values"))]
104104
pub sha256_preimages: BTreeMap<sha256::Hash, Vec<u8>>,
105-
/// HSAH160 hash to preimage map.
105+
/// HASH160 hash to preimage map.
106106
#[cfg_attr(feature = "serde", serde(with = "crate::serde_utils::btreemap_byte_values"))]
107107
pub hash160_preimages: BTreeMap<hash160::Hash, Vec<u8>>,
108-
/// HAS256 hash to preimage map.
108+
/// HASH256 hash to preimage map.
109109
#[cfg_attr(feature = "serde", serde(with = "crate::serde_utils::btreemap_byte_values"))]
110110
pub hash256_preimages: BTreeMap<sha256d::Hash, Vec<u8>>,
111111
/// Serialized Taproot signature with sighash type for key spend.

0 commit comments

Comments
 (0)