We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fbb5e5 commit 28aff94Copy full SHA for 28aff94
lightning-background-processor/src/lib.rs
@@ -737,8 +737,9 @@ pub async fn process_events_async<
737
EventHandlerFuture: core::future::Future<Output = Result<(), ReplayEvent>>,
738
EventHandler: Fn(Event) -> EventHandlerFuture,
739
PS: 'static + Deref + Send,
740
+ ES: 'static + Deref + Send,
741
M: 'static
- + Deref<Target = ChainMonitor<<CM::Target as AChannelManager>::Signer, CF, T, F, L, P>>
742
+ + Deref<Target = ChainMonitor<<CM::Target as AChannelManager>::Signer, CF, T, F, L, P, ES>>
743
+ Send
744
+ Sync,
745
CM: 'static + Deref + Send + Sync,
@@ -765,6 +766,7 @@ where
765
766
L::Target: 'static + Logger,
767
P::Target: 'static + Persist<<CM::Target as AChannelManager>::Signer>,
768
PS::Target: 'static + Persister<'a, CM, L, S>,
769
+ ES::Target: 'static + EntropySource,
770
CM::Target: AChannelManager + Send + Sync,
771
OM::Target: AOnionMessenger + Send + Sync,
772
PM::Target: APeerManager + Send + Sync,
0 commit comments