Skip to content

Commit

Permalink
chore: add ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse committed Nov 4, 2023
1 parent 89aeb19 commit b92df99
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions crates/rpc/rpc-testing-util/tests/it/trace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,9 @@ async fn trace_many_blocks() {
/// Tests the replaying of transactions on a local Ethereum node.

#[tokio::test(flavor = "multi_thread")]
async fn replay_transactions_() {
let url = parse_env_url("RETH_RPC_TEST_NODE_URL");
if url.is_err() {
return
}
#[ignore]
async fn replay_transactions() {
let url = parse_env_url("RETH_RPC_TEST_NODE_URL").unwrap();
let client = HttpClientBuilder::default().build(url.unwrap()).unwrap();

let tx_hashes = vec![
Expand Down

0 comments on commit b92df99

Please sign in to comment.