chore: rm unused op dep (#6743)

This commit is contained in:
Matthias Seitz
2024-02-22 19:38:33 +01:00
committed by GitHub
parent 9ca813aee2
commit e03ab418b0
3 changed files with 3 additions and 5 deletions

1
Cargo.lock generated
View File

@ -6661,7 +6661,6 @@ dependencies = [
"reth-interfaces",
"reth-node-api",
"reth-node-ethereum",
"reth-node-optimism",
"reth-primitives",
"reth-provider",
"reth-trie",

View File

@ -29,7 +29,6 @@ tracing.workspace = true
[dev-dependencies]
reth-trie.workspace = true
reth-node-ethereum.workspace = true
reth-node-optimism.workspace = true
[features]
optimism = [

View File

@ -597,9 +597,9 @@ mod tests {
Account, Bytecode, Bytes, ChainSpecBuilder, ForkCondition, Signature, StorageKey,
Transaction, TransactionKind, TxEip1559, MAINNET,
};
#[cfg(feature = "optimism")]
use reth_provider::BundleStateWithReceipts;
use reth_provider::{AccountReader, BlockHashReader, StateRootProvider};
use reth_provider::{
AccountReader, BlockHashReader, BundleStateWithReceipts, StateRootProvider,
};
use reth_trie::updates::TrieUpdates;
use revm::{Database, TransitionState};
use std::collections::HashMap;