File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -325,9 +325,9 @@ pub enum PendingSweepBalance {
325
325
} ,
326
326
/// A spending transaction has been confirmed on-chain and is awaiting threshold confirmations.
327
327
///
328
- /// It will be considered irrevocably confirmed after reaching [`ANTI_REORG_DELAY`] .
328
+ /// It will be pruned after reaching [`PRUNE_DELAY_BLOCKS`] confirmations .
329
329
///
330
- /// [`ANTI_REORG_DELAY `]: lightning::chain::channelmonitor::ANTI_REORG_DELAY
330
+ /// [`PRUNE_DELAY_BLOCKS `]: lightning::util::sweep::PRUNE_DELAY_BLOCKS
331
331
AwaitingThresholdConfirmations {
332
332
/// The identifier of the channel this balance belongs to.
333
333
channel_id : Option < ChannelId > ,
Original file line number Diff line number Diff line change @@ -935,7 +935,7 @@ pub(crate) fn do_channel_full_cycle<E: ElectrumApi>(
935
935
node_a. sync_wallets ( ) . unwrap ( ) ;
936
936
937
937
assert ! ( node_b. list_balances( ) . lightning_balances. is_empty( ) ) ;
938
- assert ! ( node_b. list_balances( ) . pending_balances_from_channel_closures. is_empty ( ) ) ;
938
+ assert_eq ! ( node_b. list_balances( ) . pending_balances_from_channel_closures. len ( ) , 1 ) ;
939
939
940
940
// Check node_a properly sees all balances and sweeps them.
941
941
assert_eq ! ( node_a. list_balances( ) . lightning_balances. len( ) , 1 ) ;
You can’t perform that action at this time.
0 commit comments