aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app')
-rw-r--r--ui/app/components/send-token/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/send-token/index.js b/ui/app/components/send-token/index.js
index 8a827e951..6e4c909be 100644
--- a/ui/app/components/send-token/index.js
+++ b/ui/app/components/send-token/index.js
@@ -165,7 +165,7 @@ SendTokenScreen.prototype.clearErrorsFor = function (field) {
SendTokenScreen.prototype.getAmountToSend = function (amount, selectedToken) {
const { decimals } = selectedToken || {}
const multiplier = Math.pow(10, Number(decimals || 0))
- const sendAmount = Number(amount * multiplier).toString(16)
+ const sendAmount = '0x' + Number(amount * multiplier).toString(16)
return sendAmount
}