File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ documentation = "https://docs.rs/bitcoind/"
9
9
edition = " 2018"
10
10
11
11
[dependencies ]
12
- bitcoincore-rpc = " 0.15.0 "
12
+ bitcoincore-rpc = " 0.16 "
13
13
tempfile = " 3.1"
14
14
log = " 0.4"
15
15
which = " 4.2.5"
@@ -18,7 +18,7 @@ which = "4.2.5"
18
18
env_logger = " 0.8"
19
19
20
20
[build-dependencies ]
21
- bitcoin_hashes = " 0.10 "
21
+ bitcoin_hashes = " 0.11 "
22
22
ureq = " 2.1"
23
23
flate2 = " 1.0"
24
24
tar = " 0.4"
Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ fn main() {
147
147
for d in outpath. iter ( ) {
148
148
bitcoin_exe_home. push ( d) ;
149
149
}
150
- std:: fs:: create_dir_all ( & bitcoin_exe_home. parent ( ) . unwrap ( ) ) . unwrap ( ) ;
150
+ std:: fs:: create_dir_all ( bitcoin_exe_home. parent ( ) . unwrap ( ) ) . unwrap ( ) ;
151
151
println ! ( "{:?}" , bitcoin_exe_home) ;
152
152
let mut outfile = std:: fs:: File :: create ( & bitcoin_exe_home) . unwrap ( ) ;
153
153
io:: copy ( & mut file, & mut outfile) . unwrap ( ) ;
Original file line number Diff line number Diff line change @@ -642,7 +642,7 @@ mod test {
642
642
643
643
// bob wallet may not be immediately updated
644
644
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 {
646
646
break ;
647
647
}
648
648
std:: thread:: sleep ( std:: time:: Duration :: from_millis ( 100 ) ) ;
You can’t perform that action at this time.
0 commit comments