Skip to content

Commit 5547374

Browse files
committed
upgrade bitcoincore dep
this also upgrade bitcoin to 0.29.1
1 parent 8297cb4 commit 5547374

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
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.0"
1313
tempfile = "3.1"
1414
log = "0.4"
1515
which = "4.2.5"

src/lib.rs

Lines changed: 1 addition & 1 deletion
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)