Skip to content

Commit 0e7b503

Browse files
fixup! add the bolt12 invoice to the PaymentSend event
Signed-off-by: Vincenzo Palazzo <[email protected]>
1 parent 4bbccdb commit 0e7b503

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lightning/src/events/mod.rs

+5
Original file line numberDiff line numberDiff line change
@@ -950,6 +950,11 @@ pub enum Event {
950950
/// [`Route::get_total_fees`]: crate::routing::router::Route::get_total_fees
951951
fee_paid_msat: Option<u64>,
952952
/// The bolt12 invoice that was paid. `None` if the payment was a non-bolt12 payment.
953+
///
954+
/// The bolt12 invoice is useful for proof of payment because it contains the
955+
/// payment hash. A third party can verify that the payment was made by
956+
/// showing the invoice and confirming that the payment hash matches
957+
/// the hash of the payment preimage.
953958
bolt12_invoice: Option<Bolt12Invoice>,
954959
},
955960
/// Indicates an outbound payment failed. Individual [`Event::PaymentPathFailed`] events

0 commit comments

Comments
 (0)