X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Futil%2Fevents.rs;h=d7312cd9129b1cadd92c82bd09f2e5233f558d53;hb=e382a7b4b3e5f3e59a9300b9d8a4d8bff06366fe;hp=1ba3f68d12e9f909bf540cdc3e13783cca18fd1e;hpb=c962a27156c92888f9f3cb0bc6565a73525c8da8;p=rust-lightning diff --git a/src/util/events.rs b/src/util/events.rs index 1ba3f68d..d7312cd9 100644 --- a/src/util/events.rs +++ b/src/util/events.rs @@ -138,8 +138,13 @@ pub enum MessageSendEvent { node_id: PublicKey, /// The funding_locked message which should be sent. msg: msgs::FundingLocked, - /// An optional additional announcement_signatures message which should be sent. - announcement_sigs: Option, + }, + /// Used to indicate that an announcement_signatures message should be sent to the peer with the given node_id. + SendAnnouncementSignatures { + /// The node_id of the node which should receive these message(s) + node_id: PublicKey, + /// The announcement_signatures message which should be sent. + msg: msgs::AnnouncementSignatures, }, /// Used to indicate that a series of HTLC update messages, as well as a commitment_signed /// message should be sent to the peer with the given node_id.