chore: bump alloy 0.3.3 (#10806)

This commit is contained in:
Matthias Seitz
2024-09-10 13:27:35 +02:00
committed by GitHub
parent 5a5511743e
commit ed4235609f
5 changed files with 136 additions and 113 deletions

View File

@ -1,7 +1,7 @@
use crate::Compact;
use alloy_consensus::transaction::TxEip7702 as AlloyTxEip7702;
use alloy_eips::{eip2930::AccessList, eip7702::SignedAuthorization};
use alloy_primitives::{Bytes, ChainId, TxKind, U256};
use alloy_primitives::{Address, Bytes, ChainId, U256};
use reth_codecs_derive::add_arbitrary_tests;
use serde::{Deserialize, Serialize};
@ -25,7 +25,7 @@ pub(crate) struct TxEip7702 {
gas_limit: u64,
max_fee_per_gas: u128,
max_priority_fee_per_gas: u128,
to: TxKind,
to: Address,
value: U256,
access_list: AccessList,
authorization_list: Vec<SignedAuthorization>,