chore: remove anyhow dev dependency from electrum, esplora, and bitcoind_rpc

This commit is contained in:
Wei Chen
2024-04-26 03:28:41 -04:00
parent fbe17820dc
commit 125959976f
9 changed files with 7 additions and 20 deletions

View File

@@ -20,7 +20,6 @@ bdk_chain = { path = "../chain", version = "0.13", default-features = false }
[dev-dependencies]
bdk_testenv = { path = "../testenv", default_features = false }
anyhow = { version = "1" }
[features]
default = ["std"]

View File

@@ -7,7 +7,7 @@ use bdk_chain::{
local_chain::{CheckPoint, LocalChain},
Append, BlockId, IndexedTxGraph, SpkTxOutIndex,
};
use bdk_testenv::TestEnv;
use bdk_testenv::{anyhow, TestEnv};
use bitcoin::{hashes::Hash, Block, OutPoint, ScriptBuf, WScriptHash};
use bitcoincore_rpc::RpcApi;