Skip to content

Commit c7e9e61

Browse files
add the bolt12 invoice to the PaymentSend event
To enable proof of payment, we need to share the bolt12 invoice with the library user. This is already possible if we `manually_handle_bolt12_invoices`, but this approach requires a significant amount of work from the user. This commit adds the bolt12 invoice to the PaymentSend event when the payment is completed. This allows the user to always have the option to perform proof of payment. Link: #3344 Signed-off-by: Vincenzo Palazzo <[email protected]>
1 parent f0d17d4 commit c7e9e61

File tree

2 files changed

+57
-3
lines changed

2 files changed

+57
-3
lines changed

lightning/src/events/mod.rs

+9-3
Original file line numberDiff line numberDiff line change
@@ -939,6 +939,8 @@ pub enum Event {
939939
///
940940
/// [`Route::get_total_fees`]: crate::routing::router::Route::get_total_fees
941941
fee_paid_msat: Option<u64>,
942+
/// The bolt12 invoice that was paid. `None` if the payment was a non-bolt12 payment.
943+
bolt12_invoice: Option<Bolt12Invoice>,
942944
},
943945
/// Indicates an outbound payment failed. Individual [`Event::PaymentPathFailed`] events
944946
/// provide failure information for each path attempt in the payment, including retries.
@@ -1190,12 +1192,12 @@ pub enum Event {
11901192
/// events generated or serialized by versions prior to 0.0.122.
11911193
next_user_channel_id: Option<u128>,
11921194
/// The node id of the previous node.
1193-
///
1195+
///
11941196
/// This is only `None` for HTLCs received prior to 0.1 or for events serialized by
11951197
/// versions prior to 0.1
11961198
prev_node_id: Option<PublicKey>,
11971199
/// The node id of the next node.
1198-
///
1200+
///
11991201
/// This is only `None` for HTLCs received prior to 0.1 or for events serialized by
12001202
/// versions prior to 0.1
12011203
next_node_id: Option<PublicKey>,
@@ -1546,13 +1548,14 @@ impl Writeable for Event {
15461548
(13, payment_id, option),
15471549
});
15481550
},
1549-
&Event::PaymentSent { ref payment_id, ref payment_preimage, ref payment_hash, ref fee_paid_msat } => {
1551+
&Event::PaymentSent { ref payment_id, ref payment_preimage, ref payment_hash, ref fee_paid_msat, ref bolt12_invoice } => {
15501552
2u8.write(writer)?;
15511553
write_tlv_fields!(writer, {
15521554
(0, payment_preimage, required),
15531555
(1, payment_hash, required),
15541556
(3, payment_id, option),
15551557
(5, fee_paid_msat, option),
1558+
(7, bolt12_invoice, option),
15561559
});
15571560
},
15581561
&Event::PaymentPathFailed {
@@ -1886,11 +1889,13 @@ impl MaybeReadable for Event {
18861889
let mut payment_hash = None;
18871890
let mut payment_id = None;
18881891
let mut fee_paid_msat = None;
1892+
let mut bolt12_invoice = None;
18891893
read_tlv_fields!(reader, {
18901894
(0, payment_preimage, required),
18911895
(1, payment_hash, option),
18921896
(3, payment_id, option),
18931897
(5, fee_paid_msat, option),
1898+
(7, bolt12_invoice, option),
18941899
});
18951900
if payment_hash.is_none() {
18961901
payment_hash = Some(PaymentHash(Sha256::hash(&payment_preimage.0[..]).to_byte_array()));
@@ -1900,6 +1905,7 @@ impl MaybeReadable for Event {
19001905
payment_preimage,
19011906
payment_hash: payment_hash.unwrap(),
19021907
fee_paid_msat,
1908+
bolt12_invoice,
19031909
}))
19041910
};
19051911
f()

lightning/src/ln/offers_tests.rs

+48
Original file line numberDiff line numberDiff line change
@@ -2406,3 +2406,51 @@ fn no_double_pay_with_stale_channelmanager() {
24062406
assert!(nodes[0].node.get_and_clear_pending_events().is_empty());
24072407
}
24082408

2409+
/// Checks that an invoice for a refund without any blinded paths can be requested and that we have
2410+
/// at the end all the information for make a Proof of Payment.
2411+
#[test]
2412+
fn pays_for_offer_for_pop() {
2413+
let chanmon_cfgs = create_chanmon_cfgs(2);
2414+
let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
2415+
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
2416+
let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
2417+
create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 10_000_000, 1_000_000_000);
2418+
let alice = &nodes[0];
2419+
let alice_id = alice.node.get_our_node_id();
2420+
let bob = &nodes[1];
2421+
let bob_id = bob.node.get_our_node_id();
2422+
let offer = alice.node
2423+
.create_offer_builder(None).unwrap()
2424+
.clear_paths()
2425+
.amount_msats(10_000_000)
2426+
.build().unwrap();
2427+
assert_eq!(offer.issuer_signing_pubkey(), Some(alice_id));
2428+
assert!(offer.paths().is_empty());
2429+
2430+
let payment_id = PaymentId([1; 32]);
2431+
bob.node.pay_for_offer(&offer, None, None, None, payment_id, Retry::Attempts(0), None).unwrap();
2432+
expect_recent_payment!(bob, RecentPaymentDetails::AwaitingInvoice, payment_id);
2433+
let onion_message = bob.onion_messenger.next_onion_message_for_peer(alice_id).unwrap();
2434+
alice.onion_messenger.handle_onion_message(bob_id, &onion_message);
2435+
let (invoice_request, _) = extract_invoice_request(alice, &onion_message);
2436+
let payment_context = PaymentContext::Bolt12Offer(Bolt12OfferContext {
2437+
offer_id: offer.id(),
2438+
invoice_request: InvoiceRequestFields {
2439+
payer_signing_pubkey: invoice_request.payer_signing_pubkey(),
2440+
quantity: None,
2441+
payer_note_truncated: None,
2442+
human_readable_name: None,
2443+
},
2444+
});
2445+
2446+
let onion_message = alice.onion_messenger.next_onion_message_for_peer(bob_id).unwrap();
2447+
bob.onion_messenger.handle_onion_message(alice_id, &onion_message);
2448+
let (invoice, _) = extract_invoice(bob, &onion_message);
2449+
route_bolt12_payment(bob, &[alice], &invoice);
2450+
expect_recent_payment!(bob, RecentPaymentDetails::Pending, payment_id);
2451+
2452+
// FIXME(vincenzopalazzo): The following call will read the PaymentSend (in paricular the expect_payment_sent), so we should have a
2453+
// better way to check the event. Or just pass down the invoice and assert inside it.
2454+
claim_bolt12_payment(bob, &[alice], payment_context);
2455+
expect_recent_payment!(bob, RecentPaymentDetails::Fulfilled, payment_id);
2456+
}

0 commit comments

Comments
 (0)