We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8297cb4 commit 5547374Copy full SHA for 5547374
Cargo.toml
@@ -9,7 +9,7 @@ documentation = "https://docs.rs/bitcoind/"
9
edition = "2018"
10
11
[dependencies]
12
-bitcoincore-rpc = "0.15.0"
+bitcoincore-rpc = "0.16.0"
13
tempfile = "3.1"
14
log = "0.4"
15
which = "4.2.5"
src/lib.rs
@@ -642,7 +642,7 @@ mod test {
642
643
// bob wallet may not be immediately updated
644
for _ in 0..30 {
645
- if bob.get_balances().unwrap().mine.untrusted_pending.as_sat() > 0 {
+ if bob.get_balances().unwrap().mine.untrusted_pending.to_sat() > 0 {
646
break;
647
}
648
std::thread::sleep(std::time::Duration::from_millis(100));
0 commit comments