mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore(deps): bump alloy (#10537)
Co-authored-by: Oliver <onbjerg@users.noreply.github.com>
This commit is contained in:
@ -60,7 +60,7 @@ where
|
||||
chain_id,
|
||||
blob_versioned_hashes,
|
||||
max_fee_per_blob_gas,
|
||||
// authorization_list,
|
||||
authorization_list,
|
||||
..
|
||||
} = request;
|
||||
|
||||
@ -98,7 +98,7 @@ where
|
||||
// EIP-4844 fields
|
||||
blob_hashes: blob_versioned_hashes.unwrap_or_default(),
|
||||
max_fee_per_blob_gas,
|
||||
authorization_list: Default::default(),
|
||||
authorization_list: authorization_list.map(Into::into),
|
||||
optimism: OptimismFields { enveloped_tx: Some(Bytes::new()), ..Default::default() },
|
||||
};
|
||||
|
||||
|
||||
@ -12,7 +12,7 @@ use std::{fmt, sync::Arc};
|
||||
|
||||
use crate::eth::rpc::SequencerClient;
|
||||
use alloy_primitives::U256;
|
||||
use op_alloy_network::Optimism;
|
||||
use op_alloy_network::AnyNetwork;
|
||||
use reth_chainspec::ChainSpec;
|
||||
use reth_evm::ConfigureEvm;
|
||||
use reth_network_api::NetworkInfo;
|
||||
@ -107,7 +107,7 @@ where
|
||||
N: FullNodeComponents,
|
||||
{
|
||||
type Error = OpEthApiError;
|
||||
type NetworkTypes = Optimism;
|
||||
type NetworkTypes = AnyNetwork;
|
||||
}
|
||||
|
||||
impl<N> EthApiSpec for OpEthApi<N>
|
||||
|
||||
@ -7,7 +7,7 @@ use reth_rpc_eth_api::{
|
||||
FromEthApiError,
|
||||
};
|
||||
use reth_rpc_eth_types::{EthApiError, EthStateCache, ReceiptBuilder};
|
||||
use reth_rpc_types::{AnyTransactionReceipt, OptimismTransactionReceiptFields};
|
||||
use reth_rpc_types::{optimism::OptimismTransactionReceiptFields, AnyTransactionReceipt};
|
||||
|
||||
use crate::{OpEthApi, OpEthApiError, OptimismTxMeta};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user