aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/util.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/util.js')
-rw-r--r--ui/app/util.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/ui/app/util.js b/ui/app/util.js
index bacf00c66..5dbcffa7e 100644
--- a/ui/app/util.js
+++ b/ui/app/util.js
@@ -94,9 +94,7 @@ function normalizeToWei(amount, currency) {
var multiple = new ethUtil.BN('1000', 10)
function normalizeNumberToWei(n, currency) {
var enlarged = n * 1000
- console.log(`Enlarged, we have ${enlarged}`)
var amount = new ethUtil.BN(String(enlarged), 10)
- console.log("Amount inside is "+ amount.toString(10))
return normalizeToWei(amount, currency).div(multiple)
}