aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/util/balance.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/instant/src/util/balance.ts')
-rw-r--r--packages/instant/src/util/balance.ts5
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;
},
};