|
1 | 1 | import globalContext from '../..'; |
2 | 2 | import Constants from '../../constants.json'; |
| 3 | +import { MIN_GAS_LIMIT } from '../../shared/constants'; |
3 | 4 |
|
4 | 5 | const { heavyCallData } = Constants; |
5 | 6 |
|
@@ -255,7 +256,7 @@ export function sendComponent(parentContainer) { |
255 | 256 | from: globalContext.accounts[0], |
256 | 257 | to: '0x0c54FcCd2e384b4BB6f2E405Bf5Cbc15a017AaFb', |
257 | 258 | value: '0x0', |
258 | | - gasLimit: '0x5028', |
| 259 | + gasLimit: MIN_GAS_LIMIT, |
259 | 260 | maxFeePerGas: '0x2540be400', |
260 | 261 | maxPriorityFeePerGas: '0x3b9aca00', |
261 | 262 | }, |
@@ -367,7 +368,7 @@ export function sendComponent(parentContainer) { |
367 | 368 | from: globalContext.accounts[0], |
368 | 369 | to: contract.address, |
369 | 370 | value: '0x0', |
370 | | - gasLimit: '0x5028', |
| 371 | + gasLimit: MIN_GAS_LIMIT, |
371 | 372 | maxFeePerGas: '0x2540be400', |
372 | 373 | maxPriorityFeePerGas: '0x3b9aca00', |
373 | 374 | }, |
@@ -418,7 +419,7 @@ export function sendComponent(parentContainer) { |
418 | 419 | from: globalContext.accounts[0], |
419 | 420 | to: contract.address, |
420 | 421 | value: '0x16345785D8A0', // 24414062500000 |
421 | | - gasLimit: '0x5028', |
| 422 | + gasLimit: MIN_GAS_LIMIT, |
422 | 423 | maxFeePerGas: '0x2540be400', |
423 | 424 | maxPriorityFeePerGas: '0x3b9aca00', |
424 | 425 | }, |
|
0 commit comments