mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore(deps): weekly cargo update (#13866)
Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com> Co-authored-by: Dan Cline <6798349+Rjected@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
8197894090
commit
88de40a678
@ -46,7 +46,7 @@ alloy-consensus.workspace = true
|
||||
op-alloy-network.workspace = true
|
||||
op-alloy-rpc-types.workspace = true
|
||||
op-alloy-rpc-types-engine.workspace = true
|
||||
op-alloy-rpc-jsonrpsee.workspace = true
|
||||
maili-rpc = { workspace = true, features = ["jsonrpsee"] }
|
||||
op-alloy-consensus.workspace = true
|
||||
revm.workspace = true
|
||||
|
||||
|
||||
@ -119,7 +119,7 @@ where
|
||||
block_hash, block_number, index: transaction_index, base_fee, ..
|
||||
} = tx_info;
|
||||
|
||||
let effective_gas_price = if inner.is_deposit() {
|
||||
let effective_gas_price = if matches!(inner, OpTxEnvelope::Deposit(_)) {
|
||||
// For deposits, we must always set the `gasPrice` field to 0 in rpc
|
||||
// deposit tx don't have a gas price field, but serde of `Transaction` will take care of
|
||||
// it
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
|
||||
use alloy_primitives::U64;
|
||||
use jsonrpsee_core::{async_trait, RpcResult};
|
||||
pub use op_alloy_rpc_jsonrpsee::traits::MinerApiExtServer;
|
||||
pub use maili_rpc::MinerApiExtServer;
|
||||
use reth_optimism_payload_builder::config::OpDAConfig;
|
||||
use tracing::debug;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user