Skip to content

Commit 2903697

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 6022a0a commit 2903697

File tree

11 files changed

+380
-334
lines changed

11 files changed

+380
-334
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ members = [
77
"crates/electrum",
88
"crates/esplora",
99
"crates/bitcoind_rpc",
10-
"crates/hwi",
10+
"crates/testenv",
1111
"example-crates/example_cli",
1212
"example-crates/example_electrum",
1313
"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.9", 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)