We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bbccdb commit 0e7b503Copy full SHA for 0e7b503
lightning/src/events/mod.rs
@@ -950,6 +950,11 @@ pub enum Event {
950
/// [`Route::get_total_fees`]: crate::routing::router::Route::get_total_fees
951
fee_paid_msat: Option<u64>,
952
/// 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.
958
bolt12_invoice: Option<Bolt12Invoice>,
959
},
960
/// Indicates an outbound payment failed. Individual [`Event::PaymentPathFailed`] events
0 commit comments