aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send_/send.utils.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-05-20 08:38:25 +0800
committerDan <danjm.com@gmail.com>2018-05-31 07:24:31 +0800
commit17909465f283179aad39166b1191dbaba3770bf6 (patch)
tree90d540a75ef976a8e212d39d545a6b774280c9f4 /ui/app/components/send_/send.utils.js
parent6f633a97e15e8277a065f987880cd666cc2fbf89 (diff)
downloadtangerine-wallet-browser-17909465f283179aad39166b1191dbaba3770bf6.tar.gz
tangerine-wallet-browser-17909465f283179aad39166b1191dbaba3770bf6.tar.zst
tangerine-wallet-browser-17909465f283179aad39166b1191dbaba3770bf6.zip
getParamsForGasEstimate extracts symbol from token instead of just accepting symbol.
Diffstat (limited to 'ui/app/components/send_/send.utils.js')
-rw-r--r--ui/app/components/send_/send.utils.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/app/components/send_/send.utils.js b/ui/app/components/send_/send.utils.js
index a35a55bf8..1c7fd2b42 100644
--- a/ui/app/components/send_/send.utils.js
+++ b/ui/app/components/send_/send.utils.js
@@ -139,7 +139,8 @@ function getAmountErrorObject ({
return { amount: amountError }
}
-function getParamsForGasEstimate (selectedAddress, symbol, data) {
+function getParamsForGasEstimate (selectedAddress, selectedToken, data) {
+ const { symbol } = selectedToken || {}
const estimatedGasParams = {
from: selectedAddress,
gas: '746a528800',