From 4c59ab656f62cc7bafed18d70b8124f962d4d0e3 Mon Sep 17 00:00:00 2001 From: Darioush Jalali Date: Wed, 24 Jan 2024 08:27:26 -0800 Subject: [PATCH] bind_test: remove auth.GasFeeCap --- accounts/abi/bind/bind_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/accounts/abi/bind/bind_test.go b/accounts/abi/bind/bind_test.go index 08b0b1fe63..5e8bbe32a5 100644 --- a/accounts/abi/bind/bind_test.go +++ b/accounts/abi/bind/bind_test.go @@ -1443,13 +1443,11 @@ var bindTests = []struct { "github.com/ava-labs/subnet-evm/accounts/abi/bind/backends" "github.com/ava-labs/subnet-evm/core" "github.com/ethereum/go-ethereum/crypto" - "github.com/ava-labs/subnet-evm/params" `, ` // Initialize test accounts key, _ := crypto.GenerateKey() auth, _ := bind.NewKeyedTransactorWithChainID(key, big.NewInt(1337)) - auth.GasFeeCap = new(big.Int).SetInt64(params.TestMaxBaseFee) sim := backends.NewSimulatedBackend(core.GenesisAlloc{auth.From: {Balance: new(big.Int).Mul(big.NewInt(10000000000000000), big.NewInt(1000))}}, 10000000) defer sim.Close()