Skip to content

Commit

Permalink
chore: extract TestEnv into separate crate
Browse files Browse the repository at this point in the history
`TestEnv` is extracted into its own crate to serve as a framework
for testing other block explorer APIs.
  • Loading branch information
LagginTimes committed Nov 16, 2023
1 parent cc552c5 commit dfad2a9
Show file tree
Hide file tree
Showing 10 changed files with 561 additions and 299 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ members = [
"crates/electrum",
"crates/esplora",
"crates/bitcoind_rpc",
"crates/testenv",
"example-crates/example_cli",
"example-crates/example_electrum",
"example-crates/example_esplora",
Expand Down
2 changes: 1 addition & 1 deletion crates/bitcoind_rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ bitcoincore-rpc = { version = "0.17" }
bdk_chain = { path = "../chain", version = "0.6", default-features = false }

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

[features]
Expand Down
Loading

0 comments on commit dfad2a9

Please sign in to comment.