mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-25 07:17:40 +01:00
Unify the update pattern in provide_latest_local_commitment_tx_info
This commit is contained in:
parent
35bd8c31e8
commit
823497d5a3
1 changed files with 6 additions and 12 deletions
|
@ -520,18 +520,12 @@ impl ChannelMonitor {
|
|||
feerate_per_kw,
|
||||
htlc_outputs,
|
||||
});
|
||||
self.key_storage = if let Storage::Local { ref revocation_base_key, ref htlc_base_key, ref delayed_payment_base_key, ref payment_base_key, ref shutdown_pubkey, ref latest_per_commitment_point, ref mut funding_info, .. } = self.key_storage {
|
||||
Storage::Local {
|
||||
revocation_base_key: *revocation_base_key,
|
||||
htlc_base_key: *htlc_base_key,
|
||||
delayed_payment_base_key: *delayed_payment_base_key,
|
||||
payment_base_key: *payment_base_key,
|
||||
shutdown_pubkey: *shutdown_pubkey,
|
||||
prev_latest_per_commitment_point: *latest_per_commitment_point,
|
||||
latest_per_commitment_point: Some(local_keys.per_commitment_point),
|
||||
funding_info: funding_info.take(),
|
||||
}
|
||||
} else { unimplemented!(); };
|
||||
|
||||
if let Storage::Local { ref mut latest_per_commitment_point, .. } = self.key_storage {
|
||||
*latest_per_commitment_point = Some(local_keys.per_commitment_point);
|
||||
} else {
|
||||
panic!("Channel somehow ended up with its internal ChannelMonitor being in Watchtower mode?");
|
||||
}
|
||||
}
|
||||
|
||||
/// Provides a payment_hash->payment_preimage mapping. Will be automatically pruned when all
|
||||
|
|
Loading…
Add table
Reference in a new issue