@@ -2005,17 +2005,23 @@ impl_writeable_tlv_based_enum_upgradable!(PendingOutboundPayment,
2005
2005
( 1 , reason, option) ,
2006
2006
( 2 , payment_hash, required) ,
2007
2007
} ,
2008
+ // Added in 0.0.123. Prior versions will drop these outbounds on downgrade, which is safe because
2009
+ // no HTLCs are in-flight.
2008
2010
( 5 , AwaitingInvoice ) => {
2009
2011
( 0 , expiration, required) ,
2010
2012
( 1 , invoice_request, option) ,
2011
2013
( 2 , retry_strategy, required) ,
2012
2014
( 4 , max_total_routing_fee_msat, option) ,
2013
2015
} ,
2016
+ // Added in 0.0.123. Prior versions will drop these outbounds on downgrade, which is safe because
2017
+ // no HTLCs are in-flight.
2014
2018
( 7 , InvoiceReceived ) => {
2015
2019
( 0 , payment_hash, required) ,
2016
2020
( 2 , retry_strategy, required) ,
2017
2021
( 4 , max_total_routing_fee_msat, option) ,
2018
2022
} ,
2023
+ // Added in 0.0.124. Prior versions will drop these outbounds on downgrade, which is safe because
2024
+ // no HTLCs are in-flight.
2019
2025
( 9 , StaticInvoiceReceived ) => {
2020
2026
( 0 , payment_hash, required) ,
2021
2027
( 2 , keysend_preimage, required) ,
0 commit comments