File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1373,8 +1373,8 @@ fn build_with_store_internal(
1373
1373
1374
1374
// Give ChannelMonitors to ChainMonitor
1375
1375
for ( _blockhash, channel_monitor) in channel_monitors. into_iter ( ) {
1376
- let funding_outpoint = channel_monitor. get_funding_txo ( ) . 0 ;
1377
- chain_monitor. watch_channel ( funding_outpoint , channel_monitor) . map_err ( |e| {
1376
+ let channel_id = channel_monitor. channel_id ( ) ;
1377
+ chain_monitor. watch_channel ( channel_id , channel_monitor) . map_err ( |e| {
1378
1378
log_error ! ( logger, "Failed to watch channel monitor: {:?}" , e) ;
1379
1379
BuildError :: InvalidChannelMonitor
1380
1380
} ) ?;
Original file line number Diff line number Diff line change @@ -496,7 +496,7 @@ impl ChainSource {
496
496
if let Some ( worst_channel_monitor_block_hash) = chain_monitor
497
497
. list_monitors ( )
498
498
. iter ( )
499
- . flat_map ( |( txo , _ ) | chain_monitor. get_monitor ( * txo ) )
499
+ . flat_map ( |channel_id | chain_monitor. get_monitor ( * channel_id ) )
500
500
. map ( |m| m. current_best_block ( ) )
501
501
. min_by_key ( |b| b. height )
502
502
. map ( |b| b. block_hash )
Original file line number Diff line number Diff line change @@ -1427,8 +1427,8 @@ impl Node {
1427
1427
1428
1428
let mut total_lightning_balance_sats = 0 ;
1429
1429
let mut lightning_balances = Vec :: new ( ) ;
1430
- for ( funding_txo , channel_id) in self . chain_monitor . list_monitors ( ) {
1431
- match self . chain_monitor . get_monitor ( funding_txo ) {
1430
+ for channel_id in self . chain_monitor . list_monitors ( ) {
1431
+ match self . chain_monitor . get_monitor ( channel_id ) {
1432
1432
Ok ( monitor) => {
1433
1433
// unwrap safety: `get_counterparty_node_id` will always be `Some` after 0.0.110 and
1434
1434
// LDK Node 0.1 depended on 0.0.115 already.
You can’t perform that action at this time.
0 commit comments