chore(sdk): Add NodePrimitives::Receipt (#12357)

This commit is contained in:
Emilia Hane
2024-11-07 10:59:17 +01:00
committed by GitHub
parent 29a9e97797
commit d31e1d601d
3 changed files with 7 additions and 2 deletions

View File

@ -26,7 +26,7 @@ use reth_node_builder::{
BuilderContext, Node, NodeAdapter, NodeComponentsBuilder, PayloadBuilderConfig, PayloadTypes,
};
use reth_payload_builder::{PayloadBuilderHandle, PayloadBuilderService};
use reth_primitives::{Block, Header};
use reth_primitives::{Block, Header, Receipt};
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 Receipt = Receipt;
}
/// Type configuration for a regular Ethereum node.