@@ -774,10 +774,16 @@ 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) indicating over which channel(s) we received the payment.
778
+ /// - In a non-MPP scenario, this will contain a single `channel_id` where the payment was received.
779
+ /// - In an MPP scenario, this will contain multiple `channel_id`s corresponding to the channels over
780
+ /// which the payment parts were received.
781
+ via_channel_ids : Vec < Option < ChannelId > > ,
782
+ /// The `user_channel_id`(s) indicating over which channel(s) we received the payment.
783
+ /// - In a non-MPP scenario, this will contain a single `user_channel_id`.
784
+ /// - In an MPP scenario, this will contain multiple `user_channel_id`s corresponding to the channels
785
+ /// over which the payment parts were received.
786
+ via_user_channel_ids : Vec < Option < u128 > > ,
781
787
/// The block height at which this payment will be failed back and will no longer be
782
788
/// eligible for claiming.
783
789
///
@@ -1506,7 +1512,7 @@ impl Writeable for Event {
1506
1512
// drop any channels which have not yet exchanged funding_signed.
1507
1513
} ,
1508
1514
& 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 ,
1515
+ ref purpose, ref receiver_node_id, ref via_channel_ids , ref via_user_channel_ids ,
1510
1516
ref claim_deadline, ref onion_fields, ref payment_id,
1511
1517
} => {
1512
1518
1u8 . write ( writer) ?;
@@ -1544,16 +1550,20 @@ impl Writeable for Event {
1544
1550
( 0 , payment_hash, required) ,
1545
1551
( 1 , receiver_node_id, option) ,
1546
1552
( 2 , payment_secret, option) ,
1547
- ( 3 , via_channel_id, option) ,
1553
+ // legacy field
1554
+ // (3, via_channel_id, option),
1548
1555
( 4 , amount_msat, required) ,
1549
- ( 5 , via_user_channel_id, option) ,
1556
+ // legacy field
1557
+ // (5, via_user_channel_id, option),
1550
1558
// Type 6 was `user_payment_id` on 0.0.103 and earlier
1551
1559
( 7 , claim_deadline, option) ,
1552
1560
( 8 , payment_preimage, option) ,
1553
1561
( 9 , onion_fields, option) ,
1554
1562
( 10 , skimmed_fee_opt, option) ,
1555
1563
( 11 , payment_context, option) ,
1556
1564
( 13 , payment_id, option) ,
1565
+ ( 15 , * via_channel_ids, optional_vec) ,
1566
+ ( 17 , * via_user_channel_ids, optional_vec) ,
1557
1567
} ) ;
1558
1568
} ,
1559
1569
& Event :: PaymentSent { ref payment_id, ref payment_preimage, ref payment_hash, ref amount_msat, ref fee_paid_msat } => {
@@ -1855,6 +1865,8 @@ impl MaybeReadable for Event {
1855
1865
let mut onion_fields = None ;
1856
1866
let mut payment_context = None ;
1857
1867
let mut payment_id = None ;
1868
+ let mut via_channel_ids_opt = None ;
1869
+ let mut via_user_channel_ids_opt = None ;
1858
1870
read_tlv_fields ! ( reader, {
1859
1871
( 0 , payment_hash, required) ,
1860
1872
( 1 , receiver_node_id, option) ,
@@ -1869,21 +1881,26 @@ impl MaybeReadable for Event {
1869
1881
( 10 , counterparty_skimmed_fee_msat_opt, option) ,
1870
1882
( 11 , payment_context, option) ,
1871
1883
( 13 , payment_id, option) ,
1884
+ ( 15 , via_channel_ids_opt, optional_vec) ,
1885
+ ( 17 , via_user_channel_ids_opt, optional_vec) ,
1872
1886
} ) ;
1873
1887
let purpose = match payment_secret {
1874
1888
Some ( secret) => PaymentPurpose :: from_parts ( payment_preimage, secret, payment_context)
1875
1889
. map_err ( |( ) | msgs:: DecodeError :: InvalidValue ) ?,
1876
1890
None if payment_preimage. is_some ( ) => PaymentPurpose :: SpontaneousPayment ( payment_preimage. unwrap ( ) ) ,
1877
1891
None => return Err ( msgs:: DecodeError :: InvalidValue ) ,
1878
1892
} ;
1893
+
1894
+ let via_channel_ids = via_channel_ids_opt. unwrap_or ( vec ! [ via_channel_id] ) ;
1895
+ let via_user_channel_ids = via_user_channel_ids_opt. unwrap_or ( vec ! [ via_user_channel_id] ) ;
1879
1896
Ok ( Some ( Event :: PaymentClaimable {
1880
1897
receiver_node_id,
1881
1898
payment_hash,
1882
1899
amount_msat,
1883
1900
counterparty_skimmed_fee_msat : counterparty_skimmed_fee_msat_opt. unwrap_or ( 0 ) ,
1884
1901
purpose,
1885
- via_channel_id ,
1886
- via_user_channel_id ,
1902
+ via_channel_ids ,
1903
+ via_user_channel_ids ,
1887
1904
claim_deadline,
1888
1905
onion_fields,
1889
1906
payment_id,
0 commit comments