File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 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/"
99edition = " 2018"
1010
1111[dependencies ]
12- bitcoincore-rpc = " 0.15.0 "
12+ bitcoincore-rpc = " 0.16 "
1313tempfile = " 3.1"
1414log = " 0.4"
1515which = " 4.2.5"
@@ -18,7 +18,7 @@ which = "4.2.5"
1818env_logger = " 0.8"
1919
2020[build-dependencies ]
21- bitcoin_hashes = " 0.10 "
21+ bitcoin_hashes = " 0.11 "
2222ureq = " 2.1"
2323flate2 = " 1.0"
2424tar = " 0.4"
Original file line number Diff line number Diff 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 ( ) ;
Original file line number Diff line number Diff 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 ) ) ;
You can’t perform that action at this time.
0 commit comments