We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 78f59a5 + b28769b commit e13ff10Copy full SHA for e13ff10
lightning/src/ln/msgs.rs
@@ -973,7 +973,11 @@ pub struct UnsignedChannelAnnouncement {
973
pub bitcoin_key_1: NodeId,
974
/// The funding key for the second node
975
pub bitcoin_key_2: NodeId,
976
- pub(crate) excess_data: Vec<u8>,
+ /// Excess data which was signed as a part of the message which we do not (yet) understand how
977
+ /// to decode.
978
+ ///
979
+ /// This is stored to ensure forward-compatibility as new fields are added to the lightning gossip protocol.
980
+ pub excess_data: Vec<u8>,
981
}
982
/// A [`channel_announcement`] message to be sent to or received from a peer.
983
///
0 commit comments