mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-10 13:01:22 +00:00
fix lints
This commit is contained in:
parent
902f64a946
commit
99da11e9f4
@ -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,
|
||||||
|
Loading…
Reference in New Issue
Block a user