We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a8c75a commit 1904c44Copy full SHA for 1904c44
lightning-block-sync/src/lib.rs
@@ -80,7 +80,7 @@ type BlockSourceResult<T> = Result<T, BlockSourceError>;
80
// TODO: Replace with BlockSourceResult once `async` trait functions are supported. For details,
81
// see: https://areweasyncyet.rs.
82
/// Result type for asynchronous `BlockSource` requests.
83
-type AsyncBlockSourceResult<'a, T> = Pin<Box<dyn Future<Output = BlockSourceResult<T>> + 'a + Send>>;
+pub type AsyncBlockSourceResult<'a, T> = Pin<Box<dyn Future<Output = BlockSourceResult<T>> + 'a + Send>>;
84
85
/// Error type for `BlockSource` requests.
86
///
0 commit comments