diff --git a/Cargo.lock b/Cargo.lock index f5930aeb05d2..2b6cab446f36 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9075,7 +9075,7 @@ dependencies = [ "futures", "jsonrpsee", "jsonrpsee-http-client", - "reth-primitives", + "reth-ethereum-primitives", "reth-rpc-api", "reth-rpc-eth-api", "serde_json", diff --git a/crates/rpc/rpc-testing-util/Cargo.toml b/crates/rpc/rpc-testing-util/Cargo.toml index 149073b1c680..65b10feef988 100644 --- a/crates/rpc/rpc-testing-util/Cargo.toml +++ b/crates/rpc/rpc-testing-util/Cargo.toml @@ -13,7 +13,7 @@ workspace = true [dependencies] # reth -reth-primitives.workspace = true +reth-ethereum-primitives.workspace = true reth-rpc-api = { workspace = true, features = ["client"] } # ethereum diff --git a/crates/rpc/rpc-testing-util/src/debug.rs b/crates/rpc/rpc-testing-util/src/debug.rs index 1b389b1644e7..8a1eaf4951df 100644 --- a/crates/rpc/rpc-testing-util/src/debug.rs +++ b/crates/rpc/rpc-testing-util/src/debug.rs @@ -15,7 +15,7 @@ use alloy_rpc_types_trace::{ }; use futures::{Stream, StreamExt}; use jsonrpsee::core::client::Error as RpcError; -use reth_primitives::Receipt; +use reth_ethereum_primitives::Receipt; use reth_rpc_api::{clients::DebugApiClient, EthApiClient}; const NOOP_TRACER: &str = include_str!("../assets/noop-tracer.js"); diff --git a/crates/rpc/rpc-testing-util/tests/it/trace.rs b/crates/rpc/rpc-testing-util/tests/it/trace.rs index 47932bd7302c..c733e6bde677 100644 --- a/crates/rpc/rpc-testing-util/tests/it/trace.rs +++ b/crates/rpc/rpc-testing-util/tests/it/trace.rs @@ -8,7 +8,7 @@ use alloy_rpc_types_trace::{ use futures::StreamExt; use jsonrpsee::http_client::HttpClientBuilder; use jsonrpsee_http_client::HttpClient; -use reth_primitives::Receipt; +use reth_ethereum_primitives::Receipt; use reth_rpc_api_testing_util::{debug::DebugApiExt, trace::TraceApiExt, utils::parse_env_url}; use reth_rpc_eth_api::EthApiClient; use std::time::Instant;