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.js17
1 files changed, 7 insertions, 10 deletions
diff --git a/ui/app/util.js b/ui/app/util.js
index 5252fc9d3..de631dba9 100644
--- a/ui/app/util.js
+++ b/ui/app/util.js
@@ -84,16 +84,13 @@ function weiToEth (bn) {
// Takes hex, returns [beforeDecimal, afterDecimal]
function parseBalance (balance) {
- if (!balance || balance === '0x0') return ['0', '0']
- var wei = numericBalance(balance).toString(10)
- var eth = String(wei / valueTable['wei'])
- var beforeDecimal = String(Math.floor(eth))
- var afterDecimal
- if (eth.indexOf('.') > -1) {
- afterDecimal = eth.slice(eth.indexOf('.') + 1)
- } else {
- afterDecimal = '0'
- }
+ let beforeDecimal, afterDecimal
+ let wei = numericBalance(balance).toString()
+ let trailingZeros = /0+$/
+
+ beforeDecimal = wei.length > 18 ? wei.slice(0, wei.length - 18) : '0'
+ afterDecimal = ("000000000000000000" + wei).slice(-18).replace(trailingZeros, "")
+ if(afterDecimal == ""){afterDecimal = "0" }
return [beforeDecimal, afterDecimal]
}