Skip to content

Commit

Permalink
Update to latest 'bdk' commit
Browse files Browse the repository at this point in the history
  • Loading branch information
notmandatory committed Feb 6, 2021
1 parent c96bf2a commit 2b67326
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ readme = "README.md"
license = "MIT"

[dependencies]
bdk = { git = "https://github.com/bitcoindevkit/bdk.git", commit = "4c36020e", features = ["all-keys"]}
bdk-macros = { git = "https://github.com/bitcoindevkit/bdk.git", commit = "4c36020e" }
bdk = { git = "https://github.com/bitcoindevkit/bdk.git", commit = "c4f2179", features = ["all-keys"]}
bdk-macros = { git = "https://github.com/bitcoindevkit/bdk.git", commit = "c4f2179" }
structopt = "^0.3"
serde_json = { version = "^1.0" }
log = "^0.4"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ pub fn handle_key_subcommand(
12 => MnemonicType::Words12,
_ => MnemonicType::Words24,
};
let mnemonic: GeneratedKey<_, miniscript::Bare> =
let mnemonic: GeneratedKey<_, miniscript::BareCtx> =
Mnemonic::generate((mnemonic_type, Language::English)).unwrap();
//.map_err(|e| KeyError::from(e.unwrap()))?;
let mnemonic = mnemonic.into_key();
Expand Down

0 comments on commit 2b67326

Please sign in to comment.