fix lints

This commit is contained in:
realbigsean 2023-02-08 11:03:34 -05:00
parent 902f64a946
commit 99da11e9f4
No known key found for this signature in database
GPG Key ID: BE1B3DB104F6C788

View File

@ -52,7 +52,6 @@ use types::{
use types::{ use types::{
ExecutionPayload, ExecutionPayloadCapella, ExecutionPayloadEip4844, ExecutionPayloadMerge, ExecutionPayload, ExecutionPayloadCapella, ExecutionPayloadEip4844, ExecutionPayloadMerge,
}; };
use warp::hyper::body::HttpBody;
mod block_hash; mod block_hash;
mod engine_api; mod engine_api;
@ -2074,23 +2073,22 @@ fn ethers_tx_to_bytes<T: EthSpec>(
.as_u64(); .as_u64();
let tx = if BLOB_TX_TYPE as u64 == tx_type { let tx = if BLOB_TX_TYPE as u64 == tx_type {
let EthersTransaction { let EthersTransaction {
hash, hash: _,
nonce, nonce,
block_hash, block_hash: _,
block_number, block_number: _,
transaction_index, transaction_index: _,
from, from: _,
to, to,
value, value,
gas_price, gas_price: _,
gas, gas,
input, input,
v, v,
r, r,
s, s,
transaction_type, transaction_type: _,
access_list, access_list,
max_priority_fee_per_gas, max_priority_fee_per_gas,
max_fee_per_gas, max_fee_per_gas,