Update electrsd to v0.15

This commit is contained in:
Alekos Filini 2022-02-16 17:08:25 +01:00
parent 3e4678d8e3
commit 1803f5ea8a
No known key found for this signature in database
GPG Key ID: 431401E4A4530061
2 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ test-md-docs = ["electrum"]
lazy_static = "1.4"
env_logger = "0.7"
clap = "2.33"
electrsd = { version= "0.13", features = ["trigger", "bitcoind_22_0"] }
electrsd = { version= "0.15", features = ["trigger", "bitcoind_22_0"] }
[[example]]
name = "address_validator"

View File

@ -320,7 +320,7 @@ impl Default for TestClient {
fn default() -> Self {
let bitcoind_exe = env::var("BITCOIND_EXE")
.ok()
.or(bitcoind::downloaded_exe_path())
.or(bitcoind::downloaded_exe_path().ok())
.expect(
"you should provide env var BITCOIND_EXE or specifiy a bitcoind version feature",
);