Skip to content

Commit

Permalink
Update to bdk v0.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rajarshimaitra committed Dec 29, 2022
1 parent 18ee6b2 commit 2e2e0e1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
12 changes: 5 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bdk-cli"
version = "0.6.0"
version = "0.26.0"
edition = "2018"
authors = ["Alekos Filini <alekos.filini@gmail.com>", "Riccardo Casatta <riccardo@casatta.it>", "Steve Myers <steve@notmandatory.org>"]
homepage = "https://bitcoindevkit.org"
Expand All @@ -12,7 +12,8 @@ readme = "README.md"
license = "MIT"

[dependencies]
bdk = { version = "0.24", default-features = false, features = ["all-keys"] }
#bdk = { version = "0.24", default-features = false, features = ["all-keys"] }
bdk = { git = "https://github.com/bitcoindevkit/bdk", tag = "v0.26.0-rc.1", default-features = false, features = ["all-keys"] }
bdk-macros = "0.6"
clap = { version = "3.2.22", features = ["derive"] }
serde_json = "1.0"
Expand All @@ -26,7 +27,8 @@ base64 = "^0.13"
rustyline = { version = "~9.0", optional = true }
fd-lock = { version = "=3.0.2", optional = true }
regex = { version = "1", optional = true }
bdk-reserves = { version = "0.24", optional = true }
#bdk-reserves = { version = "0.24", optional = true }
bdk-reserves = { git = "https://github.com/notmandatory/bdk-reserves.git", branch = "update_bdk_026", optional = true }
electrsd = { version= "0.21", features = ["bitcoind_22_0"], optional = true}

# Platform-specific dependencies
Expand Down
1 change: 1 addition & 0 deletions src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,7 @@ pub(crate) fn new_blockchain(
retry: wallet_opts.proxy_opts.retries,
timeout: wallet_opts.electrum_opts.timeout,
stop_gap: wallet_opts.electrum_opts.stop_gap,
validate_domain: false
})
};

Expand Down

0 comments on commit 2e2e0e1

Please sign in to comment.