Skip to content

Commit

Permalink
Upgrade bitcoin
Browse files Browse the repository at this point in the history
This is not a merge candidate.

Upgrade bitcoin to use the recently released `v0.31.0-rc1`.

Done while trying to upgrade `bdk`.
  • Loading branch information
tcharding committed Oct 16, 2023
1 parent 9f6508d commit 9338120
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ edition = "2018"
categories = ["cryptography::cryptocurrencies", "development-tools::testing"]

[dependencies]
bitcoind = { version = "0.33.0" }
electrum-client = { version = "0.15.0", default-features = false }
bitcoind = { version = "0.33.0", git = "https://github.com/tcharding/bitcoind.git", branch = "10-16-upgrade-bitcoin" }
electrum-client = { version = "0.18.0", default-features = false, git = "https://github.com/tcharding/rust-electrum-client.git", branch = "10-16-upgrade-bitcoin" }
nix = { version="0.25.0" }
log = "0.4"

[dev-dependencies]
env_logger = "0.10"

[build-dependencies]
bitcoin_hashes = "0.12"
bitcoin_hashes = "0.13"
zip = { version = "0.6", default-features = false, features = ["bzip2", "deflate"] }
minreq = { version = "2.9.0", default-features = false, features = ["https"] }

Expand Down
2 changes: 1 addition & 1 deletion src/ext.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ mod test {
electrsd.wait_tx(&txid);
let history = electrsd
.client
.script_get_history(&address.payload.script_pubkey())
.script_get_history(&address.script_pubkey())
.unwrap();
assert_eq!(history.len(), 1);
}
Expand Down

0 comments on commit 9338120

Please sign in to comment.