Skip to content

Commit

Permalink
readjust
Browse files Browse the repository at this point in the history
  • Loading branch information
stackman27 committed Feb 19, 2024
1 parent 0abc809 commit 1ca8007
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions integration-tests/contracts/contract_deployer.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 1ca8007

Please sign in to comment.