diff options
author | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-10-27 10:55:42 +0800 |
---|---|---|
committer | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-10-27 10:55:42 +0800 |
commit | 3052c8d303bdbaf57e762345d5ee8428d2194d0a (patch) | |
tree | 67d6dac5b4794b92198a8d2526c11e973646720b /packages/instant/src/util | |
parent | ff295daa5c56b5c056a5faa5ca8875c317524070 (diff) | |
download | dexon-sol-tools-3052c8d303bdbaf57e762345d5ee8428d2194d0a.tar dexon-sol-tools-3052c8d303bdbaf57e762345d5ee8428d2194d0a.tar.gz dexon-sol-tools-3052c8d303bdbaf57e762345d5ee8428d2194d0a.tar.bz2 dexon-sol-tools-3052c8d303bdbaf57e762345d5ee8428d2194d0a.tar.lz dexon-sol-tools-3052c8d303bdbaf57e762345d5ee8428d2194d0a.tar.xz dexon-sol-tools-3052c8d303bdbaf57e762345d5ee8428d2194d0a.tar.zst dexon-sol-tools-3052c8d303bdbaf57e762345d5ee8428d2194d0a.zip |
linting
Diffstat (limited to 'packages/instant/src/util')
-rw-r--r-- | packages/instant/src/util/balance.ts | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/packages/instant/src/util/balance.ts b/packages/instant/src/util/balance.ts index 9cb8b8987..24b7b99c3 100644 --- a/packages/instant/src/util/balance.ts +++ b/packages/instant/src/util/balance.ts @@ -8,11 +8,6 @@ export const balanceUtil = { return false; } const balanceWei = await web3Wrapper.getBalanceInWeiAsync(takerAddress); - console.log('balanceWei', balanceWei.toString()); - console.log( - 'buyQuote.worstCaseQuoteInfo.totalEthAmount', - buyQuote.worstCaseQuoteInfo.totalEthAmount.toString(), - ); return balanceWei >= buyQuote.worstCaseQuoteInfo.totalEthAmount; }, }; |