From f41a29ce5539bc59941bd7683cb98c068f65ff0b Mon Sep 17 00:00:00 2001 From: Amir Bandeali Date: Tue, 20 Aug 2019 19:25:59 -0700 Subject: [PATCH] Fix weth tests --- contracts/erc20/test/weth9.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/erc20/test/weth9.ts b/contracts/erc20/test/weth9.ts index e410880a6e..602abd29f9 100644 --- a/contracts/erc20/test/weth9.ts +++ b/contracts/erc20/test/weth9.ts @@ -20,7 +20,7 @@ const blockchainLifecycle = new BlockchainLifecycle(web3Wrapper); describe('EtherToken', () => { let account: string; - const gasPrice = Web3Wrapper.toBaseUnitAmount(new BigNumber(20), 9); + const gasPrice = new BigNumber(constants.DEFAULT_GAS_PRICE); let etherToken: WETH9Contract; before(async () => {