You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: fuzz/src/chanmon_consistency.rs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ use lightning::chain::transaction::OutPoint;
34
34
use lightning::chain::chaininterface::{BroadcasterInterface,ConfirmationTarget,ChainListener,FeeEstimator,ChainWatchInterfaceUtil,ChainWatchInterface};
35
35
use lightning::chain::keysinterface::{KeysInterface,InMemoryChannelKeys};
36
36
use lightning::ln::channelmonitor;
37
-
use lightning::ln::channelmonitor::{ChannelMonitor,ChannelMonitorUpdateErr,HTLCUpdate};
37
+
use lightning::ln::channelmonitor::{ChannelMonitor,ChannelMonitorUpdateErr,MonitorEvent};
38
38
use lightning::ln::channelmanager::{ChannelManager,PaymentHash,PaymentPreimage,PaymentSecret,ChannelManagerReadArgs};
39
39
use lightning::ln::features::{ChannelFeatures,InitFeatures,NodeFeatures};
40
40
use lightning::ln::msgs::{CommitmentUpdate,ChannelMessageHandler,ErrorAction,UpdateAddHTLC,Init};
@@ -135,8 +135,8 @@ impl channelmonitor::ManyChannelMonitor for TestChannelMonitor {
Copy file name to clipboardExpand all lines: lightning/src/ln/channelmanager.rs
+49-46Lines changed: 49 additions & 46 deletions
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ use bitcoin::secp256k1;
38
38
use chain::chaininterface::{BroadcasterInterface,ChainListener,FeeEstimator};
39
39
use chain::transaction::OutPoint;
40
40
use ln::channel::{Channel,ChannelError};
41
-
use ln::channelmonitor::{ChannelMonitor,ChannelMonitorUpdate,ChannelMonitorUpdateErr,ManyChannelMonitor,HTLC_FAIL_BACK_BUFFER,CLTV_CLAIM_BUFFER,LATENCY_GRACE_PERIOD_BLOCKS,ANTI_REORG_DELAY};
41
+
use ln::channelmonitor::{ChannelMonitor,ChannelMonitorUpdate,ChannelMonitorUpdateErr,ManyChannelMonitor,HTLC_FAIL_BACK_BUFFER,CLTV_CLAIM_BUFFER,LATENCY_GRACE_PERIOD_BLOCKS,ANTI_REORG_DELAY,MonitorEvent};
0 commit comments