Skip to content

Commit d4fd746

Browse files
committed
fix(testenv): fix failing tests on bdk_esplora
1 parent 4360f34 commit d4fd746

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

crates/bitcoind_rpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ bitcoincore-rpc = { version = "0.19.0" }
2121
bdk_core = { path = "../core", version = "0.3.0", default-features = false }
2222

2323
[dev-dependencies]
24-
bdk_testenv = { path = "../testenv", default-features = false }
24+
bdk_testenv = { path = "../testenv" }
2525
bdk_chain = { path = "../chain" }
2626

2727
[features]

crates/electrum/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ bdk_core = { path = "../core", version = "0.3.0" }
1717
electrum-client = { version = "0.21", features = [ "proxy" ], default-features = false }
1818

1919
[dev-dependencies]
20-
bdk_testenv = { path = "../testenv", default-features = false }
20+
bdk_testenv = { path = "../testenv" }
2121
bdk_chain = { path = "../chain" }
2222

2323
[features]

crates/esplora/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ miniscript = { version = "12.0.0", optional = true, default-features = false }
2323

2424
[dev-dependencies]
2525
bdk_chain = { path = "../chain" }
26-
bdk_testenv = { path = "../testenv", default-features = false }
26+
bdk_testenv = { path = "../testenv" }
2727
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }
2828

2929
[features]

crates/testenv/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ workspace = true
1717

1818
[dependencies]
1919
bdk_chain = { path = "../chain", version = "0.20.0", default-features = false }
20-
electrsd = { version = "0.28.0", features = [ "legacy" ] }
20+
electrsd = { version = "0.28.0", features = [ "legacy" ], default-features = false }
21+
22+
[dev-dependencies]
23+
bdk_testenv = { path = "." }
2124

2225
[features]
2326
default = ["std", "download"]

0 commit comments

Comments
 (0)