Merge pull request #460 from lightning-signer/channel-value
[rust-lightning] / lightning / src / util / test_utils.rs
index cb028b184ba02ec5303a2fce5ba3ab4a9f01ac35..20479a33e1c41fa109d64a6163096928755ef339 100644 (file)
@@ -46,7 +46,7 @@ impl chaininterface::FeeEstimator for TestFeeEstimator {
 
 pub struct TestChannelMonitor {
        pub added_monitors: Mutex<Vec<(OutPoint, channelmonitor::ChannelMonitor)>>,
-       pub simple_monitor: Arc<channelmonitor::SimpleManyChannelMonitor<OutPoint>>,
+       pub simple_monitor: channelmonitor::SimpleManyChannelMonitor<OutPoint>,
        pub update_ret: Mutex<Result<(), channelmonitor::ChannelMonitorUpdateErr>>,
 }
 impl TestChannelMonitor {