aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/util.js
diff options
context:
space:
mode:
authorHsuan Lee <hsuan@cobinhood.com>2018-12-11 18:00:37 +0800
committerHsuan Lee <hsuan@cobinhood.com>2018-12-11 18:03:36 +0800
commit5d23feae8d213bd234044955c68abbce106d02e9 (patch)
treede3c070269a2e6518285b59ef5386fcba004d924 /ui/app/util.js
parent0862bb63a551e380a9ce4fc3a69b42d37fa66aa9 (diff)
downloaddexon-wallet-5d23feae8d213bd234044955c68abbce106d02e9.tar.gz
dexon-wallet-5d23feae8d213bd234044955c68abbce106d02e9.tar.zst
dexon-wallet-5d23feae8d213bd234044955c68abbce106d02e9.zip
Refine wording
Diffstat (limited to 'ui/app/util.js')
-rw-r--r--ui/app/util.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/util.js b/ui/app/util.js
index 558a7d19..5318c58a 100644
--- a/ui/app/util.js
+++ b/ui/app/util.js
@@ -128,7 +128,7 @@ function parseBalance (balance) {
// Takes wei hex, returns an object with three properties.
// Its "formatted" property is what we generally use to render values.
-function formatBalance (balance, decimalsToKeep, needsParse = true, ticker = 'DEX') {
+function formatBalance (balance, decimalsToKeep, needsParse = true, ticker = 'DXN') {
var parsed = needsParse ? parseBalance(balance) : balance.split('.')
var beforeDecimal = parsed[0]
var afterDecimal = parsed[1]