@@ -774,10 +774,12 @@ pub enum Event {
774
774
/// Information for claiming this received payment, based on whether the purpose of the
775
775
/// payment is to pay an invoice or to send a spontaneous payment.
776
776
purpose : PaymentPurpose ,
777
- /// The `channel_id` indicating over which channel we received the payment.
778
- via_channel_id : Option < ChannelId > ,
779
- /// The `user_channel_id` indicating over which channel we received the payment.
780
- via_user_channel_id : Option < u128 > ,
777
+ /// The `channel_id`(s) over which the payment was received.
778
+ /// This will be an empty vector for events created/serialised using LDK version 0.0.112 and prior.
779
+ via_channel_ids : Vec < ChannelId > ,
780
+ /// The `user_channel_id`(s) corresponding to the channels over which the payment was received.
781
+ /// This will be an empty vector for HTLC events created/serialised using LDK version 0.0.112 and prior.
782
+ via_user_channel_ids : Vec < u128 > ,
781
783
/// The block height at which this payment will be failed back and will no longer be
782
784
/// eligible for claiming.
783
785
///
@@ -1506,7 +1508,7 @@ impl Writeable for Event {
1506
1508
// drop any channels which have not yet exchanged funding_signed.
1507
1509
} ,
1508
1510
& Event :: PaymentClaimable { ref payment_hash, ref amount_msat, counterparty_skimmed_fee_msat,
1509
- ref purpose, ref receiver_node_id, ref via_channel_id , ref via_user_channel_id ,
1511
+ ref purpose, ref receiver_node_id, ref via_channel_ids , ref via_user_channel_ids ,
1510
1512
ref claim_deadline, ref onion_fields, ref payment_id,
1511
1513
} => {
1512
1514
1u8 . write ( writer) ?;
@@ -1540,20 +1542,29 @@ impl Writeable for Event {
1540
1542
}
1541
1543
let skimmed_fee_opt = if counterparty_skimmed_fee_msat == 0 { None }
1542
1544
else { Some ( counterparty_skimmed_fee_msat) } ;
1545
+
1546
+ let via_channel_id_legacy = via_channel_ids. last ( ) . cloned ( ) ;
1547
+ let via_user_channel_id_legacy = via_user_channel_ids. last ( ) . cloned ( ) ;
1543
1548
write_tlv_fields ! ( writer, {
1544
1549
( 0 , payment_hash, required) ,
1545
1550
( 1 , receiver_node_id, option) ,
1546
1551
( 2 , payment_secret, option) ,
1547
- ( 3 , via_channel_id, option) ,
1552
+ // Marked as legacy in version 0.2.0; superseded by `via_channel_ids`, which
1553
+ // includes all channel IDs used in the payment instead of only the last one.
1554
+ ( 3 , via_channel_id_legacy, option) ,
1548
1555
( 4 , amount_msat, required) ,
1549
- ( 5 , via_user_channel_id, option) ,
1556
+ // Marked as legacy in version 0.2.0 for the same reason as `via_channel_id_legacy`;
1557
+ // superseded by `via_user_channel_ids`.
1558
+ ( 5 , via_user_channel_id_legacy, option) ,
1550
1559
// Type 6 was `user_payment_id` on 0.0.103 and earlier
1551
1560
( 7 , claim_deadline, option) ,
1552
1561
( 8 , payment_preimage, option) ,
1553
1562
( 9 , onion_fields, option) ,
1554
1563
( 10 , skimmed_fee_opt, option) ,
1555
1564
( 11 , payment_context, option) ,
1556
1565
( 13 , payment_id, option) ,
1566
+ ( 15 , * via_channel_ids, optional_vec) ,
1567
+ ( 17 , * via_user_channel_ids, optional_vec) ,
1557
1568
} ) ;
1558
1569
} ,
1559
1570
& Event :: PaymentSent { ref payment_id, ref payment_preimage, ref payment_hash, ref amount_msat, ref fee_paid_msat } => {
@@ -1849,41 +1860,54 @@ impl MaybeReadable for Event {
1849
1860
let mut counterparty_skimmed_fee_msat_opt = None ;
1850
1861
let mut receiver_node_id = None ;
1851
1862
let mut _user_payment_id = None :: < u64 > ; // Used in 0.0.103 and earlier, no longer written in 0.0.116+.
1852
- let mut via_channel_id = None ;
1863
+ let mut via_channel_id_legacy = None ;
1853
1864
let mut claim_deadline = None ;
1854
- let mut via_user_channel_id = None ;
1865
+ let mut via_user_channel_id_legacy = None ;
1855
1866
let mut onion_fields = None ;
1856
1867
let mut payment_context = None ;
1857
1868
let mut payment_id = None ;
1869
+ let mut via_channel_ids_opt = None ;
1870
+ let mut via_user_channel_ids_opt = None ;
1858
1871
read_tlv_fields ! ( reader, {
1859
1872
( 0 , payment_hash, required) ,
1860
1873
( 1 , receiver_node_id, option) ,
1861
1874
( 2 , payment_secret, option) ,
1862
- ( 3 , via_channel_id , option) ,
1875
+ ( 3 , via_channel_id_legacy , option) ,
1863
1876
( 4 , amount_msat, required) ,
1864
- ( 5 , via_user_channel_id , option) ,
1877
+ ( 5 , via_user_channel_id_legacy , option) ,
1865
1878
( 6 , _user_payment_id, option) ,
1866
1879
( 7 , claim_deadline, option) ,
1867
1880
( 8 , payment_preimage, option) ,
1868
1881
( 9 , onion_fields, option) ,
1869
1882
( 10 , counterparty_skimmed_fee_msat_opt, option) ,
1870
1883
( 11 , payment_context, option) ,
1871
1884
( 13 , payment_id, option) ,
1885
+ ( 15 , via_channel_ids_opt, optional_vec) ,
1886
+ ( 17 , via_user_channel_ids_opt, optional_vec) ,
1872
1887
} ) ;
1873
1888
let purpose = match payment_secret {
1874
1889
Some ( secret) => PaymentPurpose :: from_parts ( payment_preimage, secret, payment_context)
1875
1890
. map_err ( |( ) | msgs:: DecodeError :: InvalidValue ) ?,
1876
1891
None if payment_preimage. is_some ( ) => PaymentPurpose :: SpontaneousPayment ( payment_preimage. unwrap ( ) ) ,
1877
1892
None => return Err ( msgs:: DecodeError :: InvalidValue ) ,
1878
1893
} ;
1894
+
1895
+ let via_channel_ids = via_channel_ids_opt
1896
+ . or_else ( || via_channel_id_legacy. map ( |id| vec ! [ id] ) )
1897
+ . unwrap_or_default ( ) ;
1898
+
1899
+ let via_user_channel_ids = via_user_channel_ids_opt
1900
+ . or_else ( || via_user_channel_id_legacy. map ( |id| vec ! [ id] ) )
1901
+ . unwrap_or_default ( ) ;
1902
+
1879
1903
Ok ( Some ( Event :: PaymentClaimable {
1880
1904
receiver_node_id,
1881
1905
payment_hash,
1882
1906
amount_msat,
1883
1907
counterparty_skimmed_fee_msat : counterparty_skimmed_fee_msat_opt. unwrap_or ( 0 ) ,
1884
1908
purpose,
1885
- via_channel_id ,
1886
- via_user_channel_id ,
1909
+ via_channel_ids ,
1910
+ via_user_channel_ids ,
1887
1911
claim_deadline,
1888
1912
onion_fields,
1889
1913
payment_id,
0 commit comments