From: Matt Corallo Date: Wed, 31 Mar 2021 23:51:15 +0000 (-0400) Subject: Implement Persist for any Signer in TestPersister X-Git-Tag: v0.0.14~40^2~3 X-Git-Url: http://git.bitcoin.ninja/?a=commitdiff_plain;h=ccbff841195d7820ae7ab3e43797cdd6b026145f;p=rust-lightning Implement Persist for any Signer in TestPersister --- diff --git a/lightning/src/util/test_utils.rs b/lightning/src/util/test_utils.rs index 2d3f930a0..153f2f28e 100644 --- a/lightning/src/util/test_utils.rs +++ b/lightning/src/util/test_utils.rs @@ -186,12 +186,12 @@ impl TestPersister { *self.update_ret.lock().unwrap() = ret; } } -impl channelmonitor::Persist for TestPersister { - fn persist_new_channel(&self, _funding_txo: OutPoint, _data: &channelmonitor::ChannelMonitor) -> Result<(), channelmonitor::ChannelMonitorUpdateErr> { +impl channelmonitor::Persist for TestPersister { + fn persist_new_channel(&self, _funding_txo: OutPoint, _data: &channelmonitor::ChannelMonitor) -> Result<(), channelmonitor::ChannelMonitorUpdateErr> { self.update_ret.lock().unwrap().clone() } - fn update_persisted_channel(&self, _funding_txo: OutPoint, _update: &channelmonitor::ChannelMonitorUpdate, _data: &channelmonitor::ChannelMonitor) -> Result<(), channelmonitor::ChannelMonitorUpdateErr> { + fn update_persisted_channel(&self, _funding_txo: OutPoint, _update: &channelmonitor::ChannelMonitorUpdate, _data: &channelmonitor::ChannelMonitor) -> Result<(), channelmonitor::ChannelMonitorUpdateErr> { self.update_ret.lock().unwrap().clone() } }