File tree Expand file tree Collapse file tree 3 files changed +25
-3
lines changed Expand file tree Collapse file tree 3 files changed +25
-3
lines changed Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ ## Release 0.27.0
4
+
5
+ ### Added
6
+
7
+ - Introduced CHANGELOG
8
+ - Supports windows OS
9
+ - Provide errors if ` rpcuser ` and ` rpcpassword ` are provided
10
+
11
+ ### Changed
12
+
13
+ - use bitcoin dep to 0.29.1
14
+
15
+ ### Fixed
16
+
17
+ - fix bitcoin 0.23 on MacOS X
18
+ - fix test flakyness
19
+
20
+ ### Removed
21
+
22
+ - removed ` datadir ` from ` ConnectionParams ` , use equivalent ` workdir() `
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " bitcoind"
3
- version = " 0.26.1 "
3
+ version = " 0.27.0 "
4
4
authors = [
" Riccardo Casatta <[email protected] >" ]
5
5
description = " Utility to run a regtest bitcoind process, useful in integration testing environment"
6
6
license = " MIT"
@@ -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 .0"
13
13
tempfile = " 3.1"
14
14
log = " 0.4"
15
15
which = " 4.2.5"
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