Rename the library to bdk

This commit is contained in:
Alekos Filini
2020-09-14 14:25:38 +02:00
committed by Steve Myers
parent efdd11762c
commit d7ee38cc52
21 changed files with 92 additions and 92 deletions

View File

@@ -42,9 +42,9 @@
//! ```
//! # use std::sync::Arc;
//! # use bitcoin::*;
//! # use magical::address_validator::*;
//! # use magical::database::*;
//! # use magical::*;
//! # use bdk::address_validator::*;
//! # use bdk::database::*;
//! # use bdk::*;
//! struct PrintAddressAndContinue;
//!
//! impl AddressValidator for PrintAddressAndContinue {
@@ -71,7 +71,7 @@
//!
//! let address = wallet.get_new_address()?;
//! println!("Address: {}", address);
//! # Ok::<(), magical::Error>(())
//! # Ok::<(), bdk::Error>(())
//! ```
use std::fmt;