From d12a5404c9b59f3b920f3fb3beb28fc46fb7b1bd Mon Sep 17 00:00:00 2001 From: otherview Date: Tue, 26 Dec 2023 12:29:29 +0000 Subject: [PATCH] nits --- integration/common/constants.go | 2 +- integration/common/utils.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/integration/common/constants.go b/integration/common/constants.go index c255c7b457..80d68b5446 100644 --- a/integration/common/constants.go +++ b/integration/common/constants.go @@ -83,7 +83,7 @@ func DefaultEnclaveConfig() *config.EnclaveConfig { MaxRollupSize: 1024 * 64, GasPaymentAddress: gethcommon.HexToAddress("0xd6C9230053f45F873Cb66D8A02439380a37A4fbF"), BaseFee: new(big.Int).SetUint64(1), - GasLocalExecutionCapFlag: 40_000_000, GasBatchExecutionLimit: 30_000_000, + GasLocalExecutionCapFlag: 40_000_000, } } diff --git a/integration/common/utils.go b/integration/common/utils.go index 676e6db689..aabfea5804 100644 --- a/integration/common/utils.go +++ b/integration/common/utils.go @@ -99,7 +99,7 @@ func PrefundWallets(ctx context.Context, faucetWallet wallet.Wallet, faucetClien tx := &types.LegacyTx{ Nonce: startingNonce + uint64(idx), Value: alloc, - Gas: uint64(1_000_000), + Gas: uint64(100_000), GasPrice: gethcommon.Big1, To: &destAddr, }