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 @@ -1275,8 +1275,8 @@ fn build_with_store_internal(
1275
1275
1276
1276
// Give ChannelMonitors to ChainMonitor
1277
1277
for ( _blockhash, channel_monitor) in channel_monitors. into_iter ( ) {
1278
- let funding_outpoint = channel_monitor. get_funding_txo ( ) . 0 ;
1279
- chain_monitor. watch_channel ( funding_outpoint , channel_monitor) . map_err ( |e| {
1278
+ let channel_id = channel_monitor. channel_id ( ) ;
1279
+ chain_monitor. watch_channel ( channel_id , channel_monitor) . map_err ( |e| {
1280
1280
log_error ! ( logger, "Failed to watch channel monitor: {:?}" , e) ;
1281
1281
BuildError :: InvalidChannelMonitor
1282
1282
} ) ?;
Original file line number Diff line number Diff line change @@ -452,7 +452,7 @@ impl ChainSource {
452
452
if let Some ( worst_channel_monitor_block_hash) = chain_monitor
453
453
. list_monitors ( )
454
454
. iter ( )
455
- . flat_map ( |( txo , _ ) | chain_monitor. get_monitor ( * txo ) )
455
+ . flat_map ( |channel_id | chain_monitor. get_monitor ( * channel_id ) )
456
456
. map ( |m| m. current_best_block ( ) )
457
457
. min_by_key ( |b| b. height )
458
458
. map ( |b| b. block_hash )
Original file line number Diff line number Diff line change @@ -1425,8 +1425,8 @@ impl Node {
1425
1425
1426
1426
let mut total_lightning_balance_sats = 0 ;
1427
1427
let mut lightning_balances = Vec :: new ( ) ;
1428
- for ( funding_txo , channel_id) in self . chain_monitor . list_monitors ( ) {
1429
- match self . chain_monitor . get_monitor ( funding_txo ) {
1428
+ for channel_id in self . chain_monitor . list_monitors ( ) {
1429
+ match self . chain_monitor . get_monitor ( channel_id ) {
1430
1430
Ok ( monitor) => {
1431
1431
// unwrap safety: `get_counterparty_node_id` will always be `Some` after 0.0.110 and
1432
1432
// LDK Node 0.1 depended on 0.0.115 already.
You can’t perform that action at this time.
0 commit comments