Skip to content

Commit 5b8c21e

Browse files
Document ser for BOLT 12 pending outbound payments.
Useful since these variants will be dropped on downgrade, so want some text to explain why that's okay.
1 parent ba5eaee commit 5b8c21e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

lightning/src/ln/outbound_payment.rs

+6
Original file line numberDiff line numberDiff line change
@@ -2063,17 +2063,23 @@ impl_writeable_tlv_based_enum_upgradable!(PendingOutboundPayment,
20632063
(1, reason, option),
20642064
(2, payment_hash, required),
20652065
},
2066+
// Added in 0.0.123. Prior versions will drop these outbounds on downgrade, which is safe because
2067+
// no HTLCs are in-flight.
20662068
(5, AwaitingInvoice) => {
20672069
(0, expiration, required),
20682070
(1, invoice_request, option),
20692071
(2, retry_strategy, required),
20702072
(4, max_total_routing_fee_msat, option),
20712073
},
2074+
// Added in 0.0.123. Prior versions will drop these outbounds on downgrade, which is safe because
2075+
// no HTLCs are in-flight.
20722076
(7, InvoiceReceived) => {
20732077
(0, payment_hash, required),
20742078
(2, retry_strategy, required),
20752079
(4, max_total_routing_fee_msat, option),
20762080
},
2081+
// Added in 0.0.124. Prior versions will drop these outbounds on downgrade, which is safe because
2082+
// no HTLCs are in-flight.
20772083
(9, StaticInvoiceReceived) => {
20782084
(0, payment_hash, required),
20792085
(2, keysend_preimage, required),

0 commit comments

Comments
 (0)