File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -2254,11 +2254,13 @@ impl<Signer: Sign> ChannelMonitorImpl<Signer> {
2254
2254
debug_assert ! (
2255
2255
unmatured_htlcs. iter( ) . find( |& htlc| htlc == & htlc_update. 0 ) . is_none( ) ,
2256
2256
"An unmature HTLC transaction conflicts with a maturing one; failed to call
2257
- block_disconnected for a block containing the conflicting transaction." ) ;
2257
+ either transaction_unconfirmed for the conflicting transaction or
2258
+ block_disconnected for a block containing it." ) ;
2258
2259
debug_assert ! (
2259
2260
matured_htlcs. iter( ) . find( |& htlc| htlc == & htlc_update. 0 ) . is_none( ) ,
2260
2261
"A matured HTLC transaction conflicts with a maturing one; failed to call
2261
- block_disconnected for a block containing the conflicting transaction." ) ;
2262
+ either transaction_unconfirmed for the conflicting transaction or
2263
+ block_disconnected for a block containing it." ) ;
2262
2264
#[ cfg( debug_assertions) ]
2263
2265
matured_htlcs. push ( htlc_update. 0 . clone ( ) ) ;
2264
2266
You can’t perform that action at this time.
0 commit comments