Skip to content

Commit ab54a17

Browse files
committed
update bitcoind dep
1 parent ae5aa06 commit ab54a17

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ env_logger = "0.7"
7272
base64 = "^0.11"
7373
clap = "2.33"
7474
serial_test = "0.4"
75-
bitcoind = "0.9.0"
75+
bitcoind = "0.10.0"
7676

7777
[[example]]
7878
name = "address_validator"

src/blockchain/rpc.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ mod test {
471471

472472
let config = RpcConfig {
473473
url: bitcoind.rpc_url(),
474-
auth: Auth::CookieFile(bitcoind.cookie_file.clone()),
474+
auth: Auth::CookieFile(bitcoind.config.cookie_file.clone()),
475475
network,
476476
wallet_name,
477477
skip_blocks: None,
@@ -523,7 +523,7 @@ mod test {
523523
generate(&bitcoind, 5);
524524
let config = RpcConfig {
525525
url: bitcoind.rpc_url(),
526-
auth: Auth::CookieFile(bitcoind.cookie_file.clone()),
526+
auth: Auth::CookieFile(bitcoind.config.cookie_file.clone()),
527527
network: Network::Regtest,
528528
wallet_name: "another-name".to_string(),
529529
skip_blocks: Some(103),

0 commit comments

Comments
 (0)