fix errors input.rs
This commit is contained in:
parent
2d8ebb79c3
commit
55119c6a7b
|
@ -102,10 +102,10 @@ pub struct Input {
|
|||
/// SHA256 hash to preimage map.
|
||||
#[cfg_attr(feature = "serde", serde(with = "crate::serde_utils::btreemap_byte_values"))]
|
||||
pub sha256_preimages: BTreeMap<sha256::Hash, Vec<u8>>,
|
||||
/// HSAH160 hash to preimage map.
|
||||
/// HASH160 hash to preimage map.
|
||||
#[cfg_attr(feature = "serde", serde(with = "crate::serde_utils::btreemap_byte_values"))]
|
||||
pub hash160_preimages: BTreeMap<hash160::Hash, Vec<u8>>,
|
||||
/// HAS256 hash to preimage map.
|
||||
/// HASH256 hash to preimage map.
|
||||
#[cfg_attr(feature = "serde", serde(with = "crate::serde_utils::btreemap_byte_values"))]
|
||||
pub hash256_preimages: BTreeMap<sha256d::Hash, Vec<u8>>,
|
||||
/// Serialized Taproot signature with sighash type for key spend.
|
||||
|
|
Loading…
Reference in New Issue