Merge pull request #861 from lightning-signer/degenerify
[rust-lightning] / lightning-persister / src / lib.rs
index 3138087997e7e2295ca4d3cdcef3264a16a5c75f..368945d1cfb489db52752a1e4ec6b4afedb0497d 100644 (file)
@@ -159,7 +159,7 @@ impl FilesystemPersister {
        }
 }
 
-impl<ChannelSigner: Sign + Send + Sync> channelmonitor::Persist<ChannelSigner> for FilesystemPersister {
+impl<ChannelSigner: Sign> channelmonitor::Persist<ChannelSigner> for FilesystemPersister {
        fn persist_new_channel(&self, funding_txo: OutPoint, monitor: &ChannelMonitor<ChannelSigner>) -> Result<(), ChannelMonitorUpdateErr> {
                let filename = format!("{}_{}", funding_txo.txid.to_hex(), funding_txo.index);
                util::write_to_file(self.path_to_monitor_data(), filename, monitor)