chore(sdk): add NodePrimitives::TxType (#12332)

This commit is contained in:
Emilia Hane
2024-11-12 12:11:37 +01:00
committed by GitHub
parent a2e11977d8
commit 9f29107abb
5 changed files with 20 additions and 5 deletions

View File

@ -25,7 +25,7 @@ use reth_node_builder::{
BuilderContext, Node, NodeAdapter, NodeComponentsBuilder, PayloadBuilderConfig, PayloadTypes,
};
use reth_payload_builder::{PayloadBuilderHandle, PayloadBuilderService};
use reth_primitives::{Block, Header, Receipt, TransactionSigned};
use reth_primitives::{Block, Header, Receipt, TransactionSigned, TxType};
use reth_provider::CanonStateSubscriptions;
use reth_rpc::EthApi;
use reth_tracing::tracing::{debug, info};
@ -44,6 +44,7 @@ pub struct EthPrimitives;
impl NodePrimitives for EthPrimitives {
type Block = Block;
type SignedTx = TransactionSigned;
type TxType = TxType;
type Receipt = Receipt;
}