chore: alloy 0.4 (#11334)

This commit is contained in:
Matthias Seitz
2024-09-30 14:48:37 +02:00
committed by GitHub
parent e8153e5e2c
commit a5538bc041
80 changed files with 425 additions and 518 deletions

View File

@ -29,7 +29,7 @@ impl TransactionTestContext {
/// Creates a deployment transaction and signs it, returning an envelope.
pub async fn deploy_tx(
chain_id: u64,
gas: u128,
gas: u64,
init_code: Bytes,
wallet: PrivateKeySigner,
) -> TxEnvelope {
@ -40,7 +40,7 @@ impl TransactionTestContext {
/// Creates a deployment transaction and signs it, returning bytes.
pub async fn deploy_tx_bytes(
chain_id: u64,
gas: u128,
gas: u64,
init_code: Bytes,
wallet: PrivateKeySigner,
) -> Bytes {
@ -145,7 +145,7 @@ impl TransactionTestContext {
/// Creates a type 2 transaction
fn tx(
chain_id: u64,
gas: u128,
gas: u64,
data: Option<Bytes>,
delegate_to: Option<SignedAuthorization>,
nonce: u64,