chore(deps): rm reth-interfaces from examples (#8445)

This commit is contained in:
Matthias Seitz
2024-05-28 19:55:39 +02:00
committed by GitHub
parent 9f38a67fa3
commit c67ed1d5a9
3 changed files with 6 additions and 5 deletions

3
Cargo.lock generated
View File

@ -2985,14 +2985,15 @@ dependencies = [
"once_cell",
"reth",
"reth-cli-runner",
"reth-execution-errors",
"reth-exex",
"reth-interfaces",
"reth-node-api",
"reth-node-core",
"reth-node-ethereum",
"reth-primitives",
"reth-provider",
"reth-revm",
"reth-testing-utils",
"reth-tracing",
"reth-trie",
"rusqlite",

View File

@ -10,11 +10,11 @@ license.workspace = true
reth.workspace = true
reth-cli-runner.workspace = true
reth-exex.workspace = true
reth-interfaces.workspace = true
reth-node-api.workspace = true
reth-node-core.workspace = true
reth-node-ethereum.workspace = true
reth-primitives.workspace = true
reth-execution-errors.workspace = true
reth-provider.workspace = true
reth-revm.workspace = true
reth-tracing.workspace = true
@ -35,6 +35,6 @@ rusqlite = { version = "0.31.0", features = ["bundled"] }
serde_json.workspace = true
[dev-dependencies]
reth-interfaces = { workspace = true, features = ["test-utils"] }
reth-testing-utils.workspace = true
secp256k1.workspace = true

View File

@ -3,7 +3,7 @@ use alloy_consensus::{Blob, SidecarCoder, SimpleCoder};
use alloy_rlp::Decodable as _;
use eyre::OptionExt;
use reth::transaction_pool::TransactionPool;
use reth_interfaces::executor::BlockValidationError;
use reth_execution_errors::BlockValidationError;
use reth_node_api::{ConfigureEvm, ConfigureEvmEnv};
use reth_node_ethereum::EthEvmConfig;
use reth_primitives::{
@ -273,7 +273,6 @@ mod tests {
test_utils::{testing_pool, MockTransaction},
TransactionOrigin, TransactionPool,
};
use reth_interfaces::test_utils::generators::{self, sign_tx_with_key_pair};
use reth_primitives::{
bytes,
constants::ETH_TO_WEI,
@ -282,6 +281,7 @@ mod tests {
BlockNumber, Receipt, SealedBlockWithSenders, Transaction, TxEip2930, TxKind, U256,
};
use reth_revm::Evm;
use reth_testing_utils::generators::{self, sign_tx_with_key_pair};
use rusqlite::Connection;
use secp256k1::{Keypair, Secp256k1};