Skip to content

Commit 8b0fc8e

Browse files
committed
Upgrading the dependency bitcoincore-rpc to v0.16 to match the nested bitcoin crate to the one used in bdk v0.25
1 parent 5c83cc7 commit 8b0fc8e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation = "https://docs.rs/bitcoind/"
99
edition = "2018"
1010

1111
[dependencies]
12-
bitcoincore-rpc = "0.15.0"
12+
bitcoincore-rpc = "0.16"
1313
tempfile = "3.1"
1414
log = "0.4"
1515
which = "4.2.5"
@@ -18,7 +18,7 @@ which = "4.2.5"
1818
env_logger = "0.8"
1919

2020
[build-dependencies]
21-
bitcoin_hashes = "0.10"
21+
bitcoin_hashes = "0.11"
2222
ureq = "2.1"
2323
flate2 = "1.0"
2424
tar = "0.4"

build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ fn main() {
147147
for d in outpath.iter() {
148148
bitcoin_exe_home.push(d);
149149
}
150-
std::fs::create_dir_all(&bitcoin_exe_home.parent().unwrap()).unwrap();
150+
std::fs::create_dir_all(bitcoin_exe_home.parent().unwrap()).unwrap();
151151
println!("{:?}", bitcoin_exe_home);
152152
let mut outfile = std::fs::File::create(&bitcoin_exe_home).unwrap();
153153
io::copy(&mut file, &mut outfile).unwrap();

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ mod test {
642642

643643
// bob wallet may not be immediately updated
644644
for _ in 0..30 {
645-
if bob.get_balances().unwrap().mine.untrusted_pending.as_sat() > 0 {
645+
if bob.get_balances().unwrap().mine.untrusted_pending.to_sat() > 0 {
646646
break;
647647
}
648648
std::thread::sleep(std::time::Duration::from_millis(100));

0 commit comments

Comments
 (0)