File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
lightning-transaction-sync/src Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ use core::ops::Deref;
23
23
/// transactions and outputs to monitor for on-chain confirmation, unconfirmation, and
24
24
/// reconfirmation.
25
25
///
26
+ /// This uses and exposes either a blocking or async client variant dependent on whether the
27
+ /// `esplora-blocking` or the `esplora-async` feature is enabled.
28
+ ///
26
29
/// [`Esplora`]: https://github.com/Blockstream/electrs
27
30
/// [`ChainMonitor`]: lightning::chain::chainmonitor::ChainMonitor
28
31
/// [`Filter`]: lightning::chain::Filter
@@ -333,11 +336,11 @@ type MutexType<I> = futures::lock::Mutex<I>;
333
336
#[ cfg( not( feature = "async-interface" ) ) ]
334
337
type MutexType < I > = std:: sync:: Mutex < I > ;
335
338
336
- /// The underlying client type.
339
+ // The underlying client type.
337
340
#[ cfg( feature = "async-interface" ) ]
338
- pub type EsploraClientType = AsyncClient ;
341
+ type EsploraClientType = AsyncClient ;
339
342
#[ cfg( not( feature = "async-interface" ) ) ]
340
- pub type EsploraClientType = BlockingClient ;
343
+ type EsploraClientType = BlockingClient ;
341
344
342
345
343
346
impl < L : Deref > Filter for EsploraSyncClient < L >
You can’t perform that action at this time.
0 commit comments