From 1ca80076e5f4e82b2673af056fcd41e4664587ae Mon Sep 17 00:00:00 2001 From: stackman27 Date: Sun, 18 Feb 2024 18:44:00 -0800 Subject: [PATCH] readjust --- integration-tests/contracts/contract_deployer.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/integration-tests/contracts/contract_deployer.go b/integration-tests/contracts/contract_deployer.go index 995cc2d49c0..9897ddeae03 100644 --- a/integration-tests/contracts/contract_deployer.go +++ b/integration-tests/contracts/contract_deployer.go @@ -612,8 +612,8 @@ func (e *EthereumContractDeployer) DeployOffChainAggregator( backend bind.ContractBackend, ) (common.Address, *types.Transaction, interface{}, error) { la := common.HexToAddress(linkAddr) - auth.GasLimit = uint64(11885630143) // 11,885,630,143 | 100 000 000 000 - auth.GasPrice = big.NewInt(10100000000) + auth.GasLimit = uint64(100000000000) // 11,885,630,143 | 100 000 000 000 + auth.GasPrice = big.NewInt(1010000000) return offchainaggregator.DeployOffchainAggregator(auth, backend, offchainOptions.MaximumGasPrice, @@ -1598,8 +1598,8 @@ func (e *EthereumContractDeployer) DeployOffchainAggregatorV2( backend bind.ContractBackend, ) (common.Address, *types.Transaction, interface{}, error) { la := common.HexToAddress(linkAddr) - auth.GasLimit = uint64(11885630143) // 11,885,630,143 | 100 000 000 000 - auth.GasPrice = big.NewInt(10100000000) + auth.GasLimit = uint64(100000000000) // 11,885,630,143 | 100 000 000 000 + auth.GasPrice = big.NewInt(1010000000) return ocr2aggregator.DeployOCR2Aggregator( auth, backend,