File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ import 'solidity-coverage';
3030import { fork } from 'child_process' ;
3131
3232const SKIP_LOAD = process . env . SKIP_LOAD === 'true' ;
33- const DEFAULT_BLOCK_GAS_LIMIT = 12450000 ;
33+ const DEFAULT_BLOCK_GAS_LIMIT = 8000000 ;
3434const DEFAULT_GAS_MUL = 5 ;
3535const HARDFORK = 'istanbul' ;
3636const ETHERSCAN_KEY = process . env . ETHERSCAN_KEY || '' ;
Original file line number Diff line number Diff line change @@ -270,9 +270,7 @@ export const configureReservesByHelper = async (
270270 console . log ( `- Configure reserves in ${ chunkedInputParams . length } txs` ) ;
271271 for ( let chunkIndex = 0 ; chunkIndex < chunkedInputParams . length ; chunkIndex ++ ) {
272272 await waitForTx (
273- await atokenAndRatesDeployer . configureReserves ( chunkedInputParams [ chunkIndex ] , {
274- gasLimit : 8000000 , // TODO: Change this
275- } )
273+ await atokenAndRatesDeployer . configureReserves ( chunkedInputParams [ chunkIndex ] )
276274 ) ;
277275 console . log ( ` - Init for: ${ chunkedSymbols [ chunkIndex ] . join ( ', ' ) } ` ) ;
278276 }
You can’t perform that action at this time.
0 commit comments