aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2018-02-16 23:50:51 +0800
committerGitHub <noreply@github.com>2018-02-16 23:50:51 +0800
commit8e80081966e6411fae41f398e063ac0a62fe415c (patch)
treee5918655060dd273e5d7cbea86e4425ae7d2d4a9 /ui
parent73e5ae6e29d04481cc3ffdd32d5d096e6a10b3b3 (diff)
downloadtangerine-wallet-browser-8e80081966e6411fae41f398e063ac0a62fe415c.tar.gz
tangerine-wallet-browser-8e80081966e6411fae41f398e063ac0a62fe415c.tar.zst
tangerine-wallet-browser-8e80081966e6411fae41f398e063ac0a62fe415c.zip
lint - lift comment to new line
Diffstat (limited to 'ui')
-rw-r--r--ui/app/components/pending-tx.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js
index eb6ece176..98193ea6f 100644
--- a/ui/app/components/pending-tx.js
+++ b/ui/app/components/pending-tx.js
@@ -60,7 +60,8 @@ PendingTx.prototype.render = function () {
// Gas
const gas = txParams.gas
const gasBn = hexToBn(gas)
- const gasLimit = new BN(parseInt(blockGasLimit) || '8000000') // default to 8MM gas limit
+ // default to 8MM gas limit
+ const gasLimit = new BN(parseInt(blockGasLimit) || '8000000')
const safeGasLimitBN = this.bnMultiplyByFraction(gasLimit, 19, 20)
const saferGasLimitBN = this.bnMultiplyByFraction(gasLimit, 18, 20)
const safeGasLimit = safeGasLimitBN.toString(10)