diff options
author | Dan <danjm.com@gmail.com> | 2018-05-22 23:27:15 +0800 |
---|---|---|
committer | Dan <danjm.com@gmail.com> | 2018-05-31 07:24:31 +0800 |
commit | 2eddb7b65245b7c11a3928098eea06064b9b22cf (patch) | |
tree | b926d42784e15c3ef4e969493d47509e9d87b690 /ui/app | |
parent | 4f0b4eef5030575e8ebdf35ca19fbc77376c70b9 (diff) | |
download | dexon-wallet-2eddb7b65245b7c11a3928098eea06064b9b22cf.tar.gz dexon-wallet-2eddb7b65245b7c11a3928098eea06064b9b22cf.tar.zst dexon-wallet-2eddb7b65245b7c11a3928098eea06064b9b22cf.zip |
Support smaller decimals in currency-display
Diffstat (limited to 'ui/app')
-rw-r--r-- | ui/app/components/send/currency-display.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/send/currency-display.js b/ui/app/components/send/currency-display.js index 52dc56cb..6cd11f6e 100644 --- a/ui/app/components/send/currency-display.js +++ b/ui/app/components/send/currency-display.js @@ -50,7 +50,7 @@ CurrencyDisplay.prototype.getValueToRender = function () { fromNumericBase: 'hex', toNumericBase: 'dec', fromDenomination: 'WEI', - numberOfDecimals: 6, + numberOfDecimals: 9, conversionRate, }) } |