diff options
author | Fabio Berger <me@fabioberger.com> | 2017-12-09 01:23:44 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-12-09 01:23:44 +0800 |
commit | d5757499bc0f828fbf86ffea2da8ad3941f1c33e (patch) | |
tree | 6f429e6f2b3050de6dd7ce16e42c7f387bd5018a /packages/contracts/test/ts/ether_token.ts | |
parent | 139c8c2e783ffbbf22473604419fe3e5b299be0e (diff) | |
parent | af8d24d0eb5af781f4731b5559979f2b02579785 (diff) | |
download | dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.tar.gz dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.tar.zst dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.zip |
Merge branch 'feature/addSubproviders' into feature/portal-ledger-support
* feature/addSubproviders:
remove console.log
Update README.md
Fix unit test
Add missing params
Debug CircleCi failure
Update yarn.lock
Inline network module
Add todo
Stop supporting different file extensions in abi-gen
Refactor networkId out of web3Wrapper
Update connect types in preperation for publishing
Add link to random id generator
Remove `prebuild` command and add `test:circleci`
Fix CI command
Address feedback
Refactor web3Wrapper to a separate package
Diffstat (limited to 'packages/contracts/test/ts/ether_token.ts')
-rw-r--r-- | packages/contracts/test/ts/ether_token.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/contracts/test/ts/ether_token.ts b/packages/contracts/test/ts/ether_token.ts index 857371578..dbb4d2ee6 100644 --- a/packages/contracts/test/ts/ether_token.ts +++ b/packages/contracts/test/ts/ether_token.ts @@ -1,7 +1,7 @@ import {ZeroEx, ZeroExError} from '0x.js'; +import {promisify} from '@0xproject/utils'; import {BigNumber} from 'bignumber.js'; import * as chai from 'chai'; -import promisify = require('es6-promisify'); import Web3 = require('web3'); import {Artifacts} from '../../util/artifacts'; @@ -30,9 +30,9 @@ contract('EtherToken', (accounts: string[]) => { }); }); - const sendTransactionAsync = promisify(web3.eth.sendTransaction); + const sendTransactionAsync = promisify<string>(web3.eth.sendTransaction); const getEthBalanceAsync = async (owner: string) => { - const balanceStr = await promisify(web3.eth.getBalance)(owner); + const balanceStr = await promisify<string>(web3.eth.getBalance)(owner); const balance = new BigNumber(balanceStr); return balance; }; |