@@ -2063,17 +2063,23 @@ impl_writeable_tlv_based_enum_upgradable!(PendingOutboundPayment,
2063
2063
( 1 , reason, option) ,
2064
2064
( 2 , payment_hash, required) ,
2065
2065
} ,
2066
+ // Added in 0.0.123. Prior versions will drop these outbounds on downgrade, which is safe because
2067
+ // no HTLCs are in-flight.
2066
2068
( 5 , AwaitingInvoice ) => {
2067
2069
( 0 , expiration, required) ,
2068
2070
( 1 , invoice_request, option) ,
2069
2071
( 2 , retry_strategy, required) ,
2070
2072
( 4 , max_total_routing_fee_msat, option) ,
2071
2073
} ,
2074
+ // Added in 0.0.123. Prior versions will drop these outbounds on downgrade, which is safe because
2075
+ // no HTLCs are in-flight.
2072
2076
( 7 , InvoiceReceived ) => {
2073
2077
( 0 , payment_hash, required) ,
2074
2078
( 2 , retry_strategy, required) ,
2075
2079
( 4 , max_total_routing_fee_msat, option) ,
2076
2080
} ,
2081
+ // Added in 0.0.124. Prior versions will drop these outbounds on downgrade, which is safe because
2082
+ // no HTLCs are in-flight.
2077
2083
( 9 , StaticInvoiceReceived ) => {
2078
2084
( 0 , payment_hash, required) ,
2079
2085
( 2 , keysend_preimage, required) ,
0 commit comments