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:
github-actions[bot]
2025-01-19 19:02:27 +01:00
committed by GitHub
parent 8197894090
commit 88de40a678
7 changed files with 401 additions and 370 deletions

View File

@ -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

View File

@ -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

View File

@ -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;