chore: remove reth-rpc-types import (#11125)

This commit is contained in:
greged93
2024-09-23 16:43:27 +02:00
committed by GitHub
parent 07f5971ae1
commit faca096263
6 changed files with 10 additions and 17 deletions

View File

@ -8,7 +8,6 @@ license.workspace = true
[dependencies]
reth.workspace = true
reth-chainspec.workspace = true
reth-rpc-types.workspace = true
reth-node-api.workspace = true
reth-node-core.workspace = true
reth-primitives.workspace = true
@ -18,7 +17,7 @@ reth-ethereum-payload-builder.workspace = true
reth-node-ethereum = { workspace = true, features = ["test-utils"] }
reth-tracing.workspace = true
alloy-genesis.workspace = true
alloy-rpc-types.workspace = true
alloy-rpc-types = { workspace = true, features = ["engine"] }
eyre.workspace = true
tokio.workspace = true

View File

@ -23,7 +23,13 @@ use serde::{Deserialize, Serialize};
use thiserror::Error;
use alloy_genesis::Genesis;
use alloy_rpc_types::Withdrawal;
use alloy_rpc_types::{
engine::{
ExecutionPayloadEnvelopeV2, ExecutionPayloadEnvelopeV3, ExecutionPayloadEnvelopeV4,
ExecutionPayloadV1, PayloadAttributes as EthPayloadAttributes, PayloadId,
},
Withdrawal,
};
use reth::{
api::PayloadTypes,
builder::{
@ -57,13 +63,6 @@ use reth_payload_builder::{
PayloadBuilderService,
};
use reth_primitives::{Address, Withdrawals, B256};
use reth_rpc_types::{
engine::{
ExecutionPayloadEnvelopeV2, ExecutionPayloadEnvelopeV3, ExecutionPayloadEnvelopeV4,
PayloadAttributes as EthPayloadAttributes, PayloadId,
},
ExecutionPayloadV1,
};
use reth_tracing::{RethTracer, Tracer};
/// A custom payload attributes type.