[ci] Fix all-keys and cli-utils tests

This commit is contained in:
Steve Myers
2020-10-28 21:34:04 -07:00
parent 7b9df5bbe5
commit 4f7355ec82
5 changed files with 8 additions and 5 deletions

View File

@@ -55,7 +55,7 @@
//! ))
//! .collect::<Result<_, _>>()?;
//! let blockchain = CompactFiltersBlockchain::new(peers, "./wallet-filters", Some(500_000))?;
//! # Ok::<(), bdk::error::Error>(())
//! # Ok::<(), CompactFiltersError>(())
//! ```
use std::collections::HashSet;

View File

@@ -52,6 +52,8 @@ pub use any::{AnyBlockchain, AnyBlockchainConfig};
pub mod electrum;
#[cfg(feature = "electrum")]
pub use self::electrum::ElectrumBlockchain;
#[cfg(feature = "electrum")]
pub use self::electrum::ElectrumBlockchainConfig;
#[cfg(feature = "esplora")]
#[cfg_attr(docsrs, doc(cfg(feature = "esplora")))]