Skip to content

Commit

Permalink
chore: rm reth_primitives from rpc_testing_util (#14488)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rjected authored Feb 14, 2025
1 parent 817ad5c commit 735ff49
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/rpc/rpc-testing-util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/rpc/rpc-testing-util/src/debug.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
2 changes: 1 addition & 1 deletion crates/rpc/rpc-testing-util/tests/it/trace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 735ff49

Please sign in to comment.