-
Notifications
You must be signed in to change notification settings - Fork 399
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
[RFC] Implement a way to do BOLT 12 Proof of Payment #3593
base: main
Are you sure you want to change the base?
Changes from all commits
265f6c1
f80cd8d
e2c9570
0f406a2
3929d07
365548b
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
use crate::chain::{BestBlock, ChannelMonitorUpdateStatus, Confirm, Listen, Watch, chainmonitor::Persist}; | ||
use crate::chain::channelmonitor::ChannelMonitor; | ||
use crate::chain::transaction::OutPoint; | ||
use crate::events::{ClaimedHTLC, ClosureReason, Event, HTLCDestination, PathFailure, PaymentPurpose, PaymentFailureReason}; | ||
use crate::events::{ClaimedHTLC, ClosureReason, Event, HTLCDestination, PaidInvoice, PathFailure, PaymentFailureReason, PaymentPurpose}; | ||
use crate::events::bump_transaction::{BumpTransactionEvent, BumpTransactionEventHandler, Wallet, WalletSource}; | ||
use crate::ln::types::ChannelId; | ||
use crate::types::payment::{PaymentPreimage, PaymentHash, PaymentSecret}; | ||
|
@@ -2294,7 +2294,7 @@ macro_rules! expect_payment_claimed { | |
pub fn expect_payment_sent<CM: AChannelManager, H: NodeHolder<CM=CM>>(node: &H, | ||
expected_payment_preimage: PaymentPreimage, expected_fee_msat_opt: Option<Option<u64>>, | ||
expect_per_path_claims: bool, expect_post_ev_mon_update: bool, | ||
) { | ||
) -> Option<PaidInvoice> { | ||
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. It looks like we don't currently check that this is set for any static invoices, could you add a check in one of the calls to 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. Good catch thanks |
||
let events = node.node().get_and_clear_pending_events(); | ||
let expected_payment_hash = PaymentHash( | ||
bitcoin::hashes::sha256::Hash::hash(&expected_payment_preimage.0).to_byte_array()); | ||
|
@@ -2306,8 +2306,11 @@ pub fn expect_payment_sent<CM: AChannelManager, H: NodeHolder<CM=CM>>(node: &H, | |
if expect_post_ev_mon_update { | ||
check_added_monitors(node, 1); | ||
} | ||
// We return the invoice because some test may want to check the invoice details. | ||
#[allow(unused_assignments)] | ||
let mut invoice = None; | ||
let expected_payment_id = match events[0] { | ||
Event::PaymentSent { ref payment_id, ref payment_preimage, ref payment_hash, ref amount_msat, ref fee_paid_msat } => { | ||
Event::PaymentSent { ref payment_id, ref payment_preimage, ref payment_hash, ref amount_msat, ref fee_paid_msat, ref bolt12_invoice } => { | ||
assert_eq!(expected_payment_preimage, *payment_preimage); | ||
assert_eq!(expected_payment_hash, *payment_hash); | ||
assert!(amount_msat.is_some()); | ||
|
@@ -2316,6 +2319,7 @@ pub fn expect_payment_sent<CM: AChannelManager, H: NodeHolder<CM=CM>>(node: &H, | |
} else { | ||
assert!(fee_paid_msat.is_some()); | ||
} | ||
invoice = bolt12_invoice.clone(); | ||
payment_id.unwrap() | ||
}, | ||
_ => panic!("Unexpected event"), | ||
|
@@ -2331,19 +2335,20 @@ pub fn expect_payment_sent<CM: AChannelManager, H: NodeHolder<CM=CM>>(node: &H, | |
} | ||
} | ||
} | ||
invoice | ||
} | ||
|
||
#[macro_export] | ||
macro_rules! expect_payment_sent { | ||
($node: expr, $expected_payment_preimage: expr) => { | ||
$crate::expect_payment_sent!($node, $expected_payment_preimage, None::<u64>, true); | ||
$crate::expect_payment_sent!($node, $expected_payment_preimage, None::<u64>, true) | ||
}; | ||
($node: expr, $expected_payment_preimage: expr, $expected_fee_msat_opt: expr) => { | ||
$crate::expect_payment_sent!($node, $expected_payment_preimage, $expected_fee_msat_opt, true); | ||
$crate::expect_payment_sent!($node, $expected_payment_preimage, $expected_fee_msat_opt, true) | ||
}; | ||
($node: expr, $expected_payment_preimage: expr, $expected_fee_msat_opt: expr, $expect_paths: expr) => { | ||
$crate::ln::functional_test_utils::expect_payment_sent(&$node, $expected_payment_preimage, | ||
$expected_fee_msat_opt.map(|o| Some(o)), $expect_paths, true); | ||
$expected_fee_msat_opt.map(|o| Some(o)), $expect_paths, true) | ||
} | ||
} | ||
|
||
|
@@ -3106,20 +3111,22 @@ pub fn pass_claimed_payment_along_route(args: ClaimAlongRouteArgs) -> u64 { | |
|
||
expected_total_fee_msat | ||
} | ||
pub fn claim_payment_along_route(args: ClaimAlongRouteArgs) { | ||
pub fn claim_payment_along_route(args: ClaimAlongRouteArgs) -> Option<PaidInvoice> { | ||
let origin_node = args.origin_node; | ||
let payment_preimage = args.payment_preimage; | ||
let skip_last = args.skip_last; | ||
let expected_total_fee_msat = do_claim_payment_along_route(args); | ||
if !skip_last { | ||
expect_payment_sent!(origin_node, payment_preimage, Some(expected_total_fee_msat)); | ||
expect_payment_sent!(origin_node, payment_preimage, Some(expected_total_fee_msat)) | ||
} else { | ||
None | ||
} | ||
} | ||
|
||
pub fn claim_payment<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, expected_route: &[&Node<'a, 'b, 'c>], our_payment_preimage: PaymentPreimage) { | ||
pub fn claim_payment<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, expected_route: &[&Node<'a, 'b, 'c>], our_payment_preimage: PaymentPreimage) -> Option<PaidInvoice> { | ||
claim_payment_along_route( | ||
ClaimAlongRouteArgs::new(origin_node, &[expected_route], our_payment_preimage) | ||
); | ||
) | ||
} | ||
|
||
pub const TEST_FINAL_CLTV: u32 = 70; | ||
|
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.
This won't provide proof-of-payment if a static invoice is provided, could amend the docs for that
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.
Good catch, this is the docs for the older version - now should be it, let me know how looks like now, and if you want to do some more iteration on it