diff --git a/bitcoin/src/psbt/raw.rs b/bitcoin/src/psbt/raw.rs index a3c4e61f3..8eed89e53 100644 --- a/bitcoin/src/psbt/raw.rs +++ b/bitcoin/src/psbt/raw.rs @@ -17,14 +17,15 @@ use crate::prelude::{DisplayHex, Vec}; use crate::psbt::Error; /// A PSBT key in its raw byte form. +/// +/// ` := ` #[derive(Debug, PartialEq, Hash, Eq, Clone, Ord, PartialOrd)] #[cfg_attr(feature = "serde", derive(Serialize, Deserialize))] #[cfg_attr(feature = "serde", serde(crate = "actual_serde"))] pub struct Key { /// The type of this PSBT key. pub type_value: u8, - /// The key itself in raw byte form. - /// ` := ` + /// The key data itself in raw byte form. #[cfg_attr(feature = "serde", serde(with = "crate::serde_utils::hex_bytes"))] pub key: Vec, }