Add a function to return the version of BDK at runtime

This commit is contained in:
Alekos Filini
2021-01-25 15:13:45 -05:00
parent 03e6e8126d
commit df32c849bb
2 changed files with 9 additions and 0 deletions

View File

@@ -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")
}