File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1579,13 +1579,13 @@ macro_rules! send_channel_ready {
1579
1579
macro_rules! emit_channel_pending_event {
1580
1580
( $locked_events: expr, $channel: expr) => {
1581
1581
if $channel. should_emit_channel_pending_event( ) {
1582
- $locked_events. push ( events:: Event :: ChannelPending {
1582
+ $locked_events. push_back ( ( events:: Event :: ChannelPending {
1583
1583
channel_id: $channel. channel_id( ) ,
1584
1584
former_temporary_channel_id: $channel. temporary_channel_id( ) ,
1585
1585
counterparty_node_id: $channel. get_counterparty_node_id( ) ,
1586
1586
user_channel_id: $channel. get_user_id( ) ,
1587
1587
funding_txo: $channel. get_funding_txo( ) . unwrap( ) . into_bitcoin_outpoint( ) ,
1588
- } ) ;
1588
+ } , None ) ) ;
1589
1589
$channel. set_channel_pending_event_emitted( ) ;
1590
1590
}
1591
1591
}
You can’t perform that action at this time.
0 commit comments