diff options
Diffstat (limited to 'ui/app/send.js')
-rw-r--r-- | ui/app/send.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/send.js b/ui/app/send.js index ea9dd7c0c..926c3e29a 100644 --- a/ui/app/send.js +++ b/ui/app/send.js @@ -209,8 +209,8 @@ SendTransactionScreen.prototype.back = function() { SendTransactionScreen.prototype.onSubmit = function() { const recipient = document.querySelector('input[name="address"]').value - const inputAmount = parseFloat(document.querySelector('input[name="amount"]').value) - const value = util.normalizeNumberToWei(inputAmount, 'ether') + const input = document.querySelector('input[name="amount"]').value + const value = util.normalizeEthStringToWei(input) const txData = document.querySelector('input[name="txData"]').value const balance = this.props.balance |