Merge pull request #2197 from jbesraa/feat/lockable_score_rw
[rust-lightning] / lightning-block-sync / src / lib.rs
index f9ce6c636c6d8e50e5df79ade58a30f0f76959cb..3561a1b5d769f19381dfdf1bec1e7749cdf8c2d8 100644 (file)
@@ -28,6 +28,8 @@ pub mod http;
 pub mod init;
 pub mod poll;
 
+pub mod gossip;
+
 #[cfg(feature = "rest-client")]
 pub mod rest;
 
@@ -132,6 +134,9 @@ impl BlockSourceError {
        }
 
        /// Converts the error into the underlying error.
+       ///
+       /// May contain an [`std::io::Error`] from the [`BlockSource`]. See implementations for further
+       /// details, if any.
        pub fn into_inner(self) -> Box<dyn std::error::Error + Send + Sync> {
                self.error
        }