diff options
author | Thomas Huang <tmashuang@users.noreply.github.com> | 2017-11-03 01:02:09 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-03 01:02:09 +0800 |
commit | 86e88dc8135e9729a86c4b8ce3c00a9d4cad0a3e (patch) | |
tree | 1da4b27d85cb0e155c7709d7b3a73d75645726a5 /ui/app/components/send/send-utils.js | |
parent | c1d2a1226c5ba4e5cfe1eeae2f52a86b67fc7404 (diff) | |
parent | 56e9f98bd05de8ae26f653d15eec4304f0c72155 (diff) | |
download | tangerine-wallet-browser-86e88dc8135e9729a86c4b8ce3c00a9d4cad0a3e.tar tangerine-wallet-browser-86e88dc8135e9729a86c4b8ce3c00a9d4cad0a3e.tar.gz tangerine-wallet-browser-86e88dc8135e9729a86c4b8ce3c00a9d4cad0a3e.tar.bz2 tangerine-wallet-browser-86e88dc8135e9729a86c4b8ce3c00a9d4cad0a3e.tar.lz tangerine-wallet-browser-86e88dc8135e9729a86c4b8ce3c00a9d4cad0a3e.tar.xz tangerine-wallet-browser-86e88dc8135e9729a86c4b8ce3c00a9d4cad0a3e.tar.zst tangerine-wallet-browser-86e88dc8135e9729a86c4b8ce3c00a9d4cad0a3e.zip |
Merge pull request #2519 from danjm/NewUI-flat-lintfixes
[NewUI-flat] New ui flat lintfixes
Diffstat (limited to 'ui/app/components/send/send-utils.js')
-rw-r--r-- | ui/app/components/send/send-utils.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ui/app/components/send/send-utils.js b/ui/app/components/send/send-utils.js index bf096d610..6ec04a223 100644 --- a/ui/app/components/send/send-utils.js +++ b/ui/app/components/send/send-utils.js @@ -1,6 +1,6 @@ const { addCurrencies, conversionGreaterThan } = require('../../conversion-util') -function isBalanceSufficient({ +function isBalanceSufficient ({ amount, gasTotal, balance, @@ -27,7 +27,6 @@ function isBalanceSufficient({ fromNumericBase: 'hex', conversionRate: amountConversionRate, fromCurrency: selectedToken || primaryCurrency, - conversionRate: amountConversionRate, }, ) @@ -36,4 +35,4 @@ function isBalanceSufficient({ module.exports = { isBalanceSufficient, -}
\ No newline at end of file +} |