Skip to content

Commit a65d37b

Browse files
committed
Add missing inbound_payment_id_secret write in ChannelManager
In aa09c33 we added a new secret in `ChannelManager` with which to derive inbound `PaymentId`s. We added read support for the new field, but forgot to add writing support for it. Here we fix this oversight.
1 parent 4741653 commit a65d37b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lightning/src/ln/channelmanager.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12024,6 +12024,7 @@ where
1202412024
(11, self.probing_cookie_secret, required),
1202512025
(13, htlc_onion_fields, optional_vec),
1202612026
(14, decode_update_add_htlcs_opt, option),
12027+
(15, self.inbound_payment_id_secret, required),
1202712028
});
1202812029

1202912030
Ok(())

0 commit comments

Comments
 (0)