-
Notifications
You must be signed in to change notification settings - Fork 405
adds node_id to Event::Payment{Received, Claimed} #1766
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -342,6 +342,13 @@ pub enum Event { | |
/// [`ChannelManager::claim_funds`]: crate::ln::channelmanager::ChannelManager::claim_funds | ||
/// [`ChannelManager::fail_htlc_backwards`]: crate::ln::channelmanager::ChannelManager::fail_htlc_backwards | ||
PaymentReceived { | ||
/// The node that received the payment. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you add a note here and on the version below saying that "this is useful to identify payments which were received via [phantom node payments]. This field will always be filled in when the event was generated by LDK versions 0.0.113 and above"? If you do the |
||
/// This is useful to identify payments which were received via [phantom node payments]. | ||
/// This field will always be filled in when the event was generated by LDK versions | ||
/// 0.0.113 and above. | ||
/// | ||
/// [phantom node payments]: crate::chain::keysinterface::PhantomKeysManager | ||
receiver_node_id: Option<PublicKey>, | ||
/// The hash for which the preimage should be handed to the ChannelManager. Note that LDK will | ||
/// not stop you from registering duplicate payment hashes for inbound payments. | ||
payment_hash: PaymentHash, | ||
|
@@ -366,6 +373,13 @@ pub enum Event { | |
/// | ||
/// [`ChannelManager::claim_funds`]: crate::ln::channelmanager::ChannelManager::claim_funds | ||
PaymentClaimed { | ||
/// The node that received the payment. | ||
/// This is useful to identify payments which were received via [phantom node payments]. | ||
/// This field will always be filled in when the event was generated by LDK versions | ||
/// 0.0.113 and above. | ||
/// | ||
/// [phantom node payments]: crate::chain::keysinterface::PhantomKeysManager | ||
receiver_node_id: Option<PublicKey>, | ||
/// The payment hash of the claimed payment. Note that LDK will not stop you from | ||
/// registering duplicate payment hashes for inbound payments. | ||
payment_hash: PaymentHash, | ||
|
@@ -739,7 +753,7 @@ impl Writeable for Event { | |
// We never write out FundingGenerationReady events as, upon disconnection, peers | ||
// drop any channels which have not yet exchanged funding_signed. | ||
}, | ||
&Event::PaymentReceived { ref payment_hash, ref amount_msat, ref purpose } => { | ||
&Event::PaymentReceived { ref payment_hash, ref amount_msat, ref purpose, ref receiver_node_id } => { | ||
1u8.write(writer)?; | ||
let mut payment_secret = None; | ||
let payment_preimage; | ||
|
@@ -754,6 +768,7 @@ impl Writeable for Event { | |
} | ||
write_tlv_fields!(writer, { | ||
(0, payment_hash, required), | ||
(1, receiver_node_id, option), | ||
(2, payment_secret, option), | ||
(4, amount_msat, required), | ||
(6, 0u64, required), // user_payment_id required for compatibility with 0.0.103 and earlier | ||
|
@@ -854,10 +869,11 @@ impl Writeable for Event { | |
// We never write the OpenChannelRequest events as, upon disconnection, peers | ||
// drop any channels which have not yet exchanged funding_signed. | ||
}, | ||
&Event::PaymentClaimed { ref payment_hash, ref amount_msat, ref purpose } => { | ||
&Event::PaymentClaimed { ref payment_hash, ref amount_msat, ref purpose, ref receiver_node_id } => { | ||
19u8.write(writer)?; | ||
write_tlv_fields!(writer, { | ||
(0, payment_hash, required), | ||
(1, receiver_node_id, option), | ||
(2, purpose, required), | ||
(4, amount_msat, required), | ||
}); | ||
|
@@ -923,9 +939,11 @@ impl MaybeReadable for Event { | |
let mut payment_preimage = None; | ||
let mut payment_secret = None; | ||
let mut amount_msat = 0; | ||
let mut receiver_node_id = None; | ||
let mut _user_payment_id = None::<u64>; // For compatibility with 0.0.103 and earlier | ||
read_tlv_fields!(reader, { | ||
(0, payment_hash, required), | ||
(1, receiver_node_id, option), | ||
(2, payment_secret, option), | ||
(4, amount_msat, required), | ||
(6, _user_payment_id, option), | ||
|
@@ -940,6 +958,7 @@ impl MaybeReadable for Event { | |
None => return Err(msgs::DecodeError::InvalidValue), | ||
}; | ||
Ok(Some(Event::PaymentReceived { | ||
receiver_node_id, | ||
payment_hash, | ||
amount_msat, | ||
purpose, | ||
|
@@ -1117,13 +1136,16 @@ impl MaybeReadable for Event { | |
let mut payment_hash = PaymentHash([0; 32]); | ||
let mut purpose = None; | ||
let mut amount_msat = 0; | ||
let mut receiver_node_id = None; | ||
read_tlv_fields!(reader, { | ||
(0, payment_hash, required), | ||
(1, receiver_node_id, option), | ||
(2, purpose, ignorable), | ||
(4, amount_msat, required), | ||
}); | ||
if purpose.is_none() { return Ok(None); } | ||
Ok(Some(Event::PaymentClaimed { | ||
receiver_node_id, | ||
payment_hash, | ||
purpose: purpose.unwrap(), | ||
amount_msat, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Could re-add the blank line before the macro.