Skip to content

Commit 4edf533

Browse files
committed
chore: extract TestEnv into separate crate
`TestEnv` is extracted into its own crate to serve as a framework for testing other block explorer APIs.
1 parent 6e648fd commit 4edf533

File tree

11 files changed

+378
-333
lines changed

11 files changed

+378
-333
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ members = [
88
"crates/esplora",
99
"crates/bitcoind_rpc",
1010
"crates/hwi",
11+
"crates/testenv",
1112
"example-crates/example_cli",
1213
"example-crates/example_electrum",
1314
"example-crates/example_esplora",

crates/bitcoind_rpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ bitcoincore-rpc = { version = "0.17" }
1919
bdk_chain = { path = "../chain", version = "0.11", default-features = false }
2020

2121
[dev-dependencies]
22-
bitcoind = { version = "0.33", features = ["25_0"] }
22+
bdk_testenv = { path = "../testenv", default_features = false }
2323
anyhow = { version = "1" }
2424

2525
[features]

0 commit comments

Comments
 (0)