test: make test compile in reth-rpc (#9399)

This commit is contained in:
Matthias Seitz
2024-07-09 18:17:34 +02:00
committed by GitHub
parent 387587a1bb
commit bb8ff67182
2 changed files with 5 additions and 5 deletions

View File

@@ -76,8 +76,10 @@ derive_more.workspace = true
[dev-dependencies]
reth-evm-ethereum.workspace = true
reth-testing-utils.workspace = true
jsonrpsee-types.workspace = true
reth-transaction-pool = { workspace = true, features = ["test-utils"] }
reth-provider = { workspace = true, features = ["test-utils"] }
jsonrpsee-types.workspace = true
jsonrpsee = { workspace = true, features = ["client"] }
assert_matches.workspace = true
tempfile.workspace = true

View File

@@ -40,8 +40,7 @@ where
#[cfg(test)]
mod tests {
use std::collections::HashMap;
use super::*;
use reth_evm_ethereum::EthEvmConfig;
use reth_primitives::{
constants::ETHEREUM_BLOCK_GAS_LIMIT, Address, StorageKey, StorageValue, U256,
@@ -54,8 +53,7 @@ mod tests {
use reth_rpc_server_types::constants::{DEFAULT_ETH_PROOF_WINDOW, DEFAULT_PROOF_PERMITS};
use reth_tasks::pool::BlockingTaskPool;
use reth_transaction_pool::test_utils::testing_pool;
use super::*;
use std::collections::HashMap;
#[tokio::test]
async fn test_storage() {