rpc-types: replace reth TransactionRequest by alloy (#11091)

This commit is contained in:
Thomas Coratger
2024-09-21 20:52:59 +02:00
committed by GitHub
parent 5113e29074
commit b9712c5ec5
27 changed files with 43 additions and 24 deletions

View File

@@ -7,6 +7,7 @@ use std::{
};
use alloy_primitives::{TxHash, B256};
use alloy_rpc_types_eth::transaction::TransactionRequest;
use futures::{Stream, StreamExt};
use jsonrpsee::core::client::Error as RpcError;
use reth_primitives::{BlockId, Receipt};
@@ -16,7 +17,7 @@ use reth_rpc_types::{
common::TraceResult,
geth::{GethDebugTracerType, GethDebugTracingOptions, GethTrace},
},
Block, Transaction, TransactionRequest,
Block, Transaction,
};
const NOOP_TRACER: &str = include_str!("../assets/noop-tracer.js");