aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/test/ts/ether_token.ts
diff options
context:
space:
mode:
authorAmir Bandeali <abandeali1@gmail.com>2017-12-13 05:08:59 +0800
committerAmir Bandeali <abandeali1@gmail.com>2017-12-13 07:05:30 +0800
commit1fb643cb69fba85434ada35755f90dbc1d9ee85f (patch)
tree1d844a14768f0b011eadb149f6f6f82bd1b8e0bf /packages/contracts/test/ts/ether_token.ts
parent88db8c37242f899d00f1195a368d58a914d499cb (diff)
downloaddexon-sol-tools-1fb643cb69fba85434ada35755f90dbc1d9ee85f.tar
dexon-sol-tools-1fb643cb69fba85434ada35755f90dbc1d9ee85f.tar.gz
dexon-sol-tools-1fb643cb69fba85434ada35755f90dbc1d9ee85f.tar.bz2
dexon-sol-tools-1fb643cb69fba85434ada35755f90dbc1d9ee85f.tar.lz
dexon-sol-tools-1fb643cb69fba85434ada35755f90dbc1d9ee85f.tar.xz
dexon-sol-tools-1fb643cb69fba85434ada35755f90dbc1d9ee85f.tar.zst
dexon-sol-tools-1fb643cb69fba85434ada35755f90dbc1d9ee85f.zip
Formatting fixes
Diffstat (limited to 'packages/contracts/test/ts/ether_token.ts')
-rw-r--r--packages/contracts/test/ts/ether_token.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/contracts/test/ts/ether_token.ts b/packages/contracts/test/ts/ether_token.ts
index db281e511..2f9df59a4 100644
--- a/packages/contracts/test/ts/ether_token.ts
+++ b/packages/contracts/test/ts/ether_token.ts
@@ -81,8 +81,9 @@ contract('EtherToken', (accounts: string[]) => {
const initEthBalance = await getEthBalanceAsync(account);
const ethTokensToWithdraw = initEthTokenBalance;
expect(ethTokensToWithdraw).to.not.be.bignumber.equal(0);
- const txHash = await zeroEx.etherToken.withdrawAsync(ethTokensToWithdraw, account,
- {gasLimit: constants.MAX_ETHERTOKEN_WITHDRAW_GAS});
+ const txHash = await zeroEx.etherToken.withdrawAsync(ethTokensToWithdraw, account, {
+ gasLimit: constants.MAX_ETHERTOKEN_WITHDRAW_GAS,
+ });
const receipt = await zeroEx.awaitTransactionMinedAsync(txHash);
const ethSpentOnGas = gasPrice.times(receipt.gasUsed);