mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-24 23:08:36 +01:00
Add missing inbound_payment_id_secret
write in ChannelManager
In aa09c33a17
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.
This commit is contained in:
parent
4741653f76
commit
a65d37b48b
1 changed files with 1 additions and 0 deletions
|
@ -12024,6 +12024,7 @@ where
|
|||
(11, self.probing_cookie_secret, required),
|
||||
(13, htlc_onion_fields, optional_vec),
|
||||
(14, decode_update_add_htlcs_opt, option),
|
||||
(15, self.inbound_payment_id_secret, required),
|
||||
});
|
||||
|
||||
Ok(())
|
||||
|
|
Loading…
Add table
Reference in a new issue