Merge branch 'master' into make_txbuilder_take_ref_to_wallet

This commit is contained in:
LLFourn
2021-01-30 13:12:13 +11:00
6 changed files with 65 additions and 22 deletions

View File

@@ -56,7 +56,7 @@
//! interact with the bitcoin P2P network.
//!
//! ```toml
//! bdk = "0.2.0"
//! bdk = "0.3.0"
//! ```
//!
//! ## Sync the balance of a descriptor
@@ -265,3 +265,8 @@ pub use wallet::address_validator;
pub use wallet::signer;
pub use wallet::tx_builder::TxBuilder;
pub use wallet::Wallet;
/// Get the version of BDK at runtime
pub fn version() -> &'static str {
env!("CARGO_PKG_VERSION", "unknown")
}