diff options
author | frankiebee <frankie.diamond@gmail.com> | 2017-06-15 12:52:49 +0800 |
---|---|---|
committer | frankiebee <frankie.diamond@gmail.com> | 2017-06-15 12:52:49 +0800 |
commit | 07539a63e4378153778b5bb264aaffad7e46cf34 (patch) | |
tree | 58a4744e448cf66890febd94fb3f0a0d1f800558 | |
parent | da33efe77515bbfff7100f3205b4d0d907e9296b (diff) | |
download | tangerine-wallet-browser-07539a63e4378153778b5bb264aaffad7e46cf34.tar tangerine-wallet-browser-07539a63e4378153778b5bb264aaffad7e46cf34.tar.gz tangerine-wallet-browser-07539a63e4378153778b5bb264aaffad7e46cf34.tar.bz2 tangerine-wallet-browser-07539a63e4378153778b5bb264aaffad7e46cf34.tar.lz tangerine-wallet-browser-07539a63e4378153778b5bb264aaffad7e46cf34.tar.xz tangerine-wallet-browser-07539a63e4378153778b5bb264aaffad7e46cf34.tar.zst tangerine-wallet-browser-07539a63e4378153778b5bb264aaffad7e46cf34.zip |
remove unnecessary log
-rw-r--r-- | app/scripts/controllers/transactions.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/app/scripts/controllers/transactions.js b/app/scripts/controllers/transactions.js index 931f01855..2769a8d59 100644 --- a/app/scripts/controllers/transactions.js +++ b/app/scripts/controllers/transactions.js @@ -429,10 +429,7 @@ module.exports = class TransactionController extends EventEmitter { return cb() } - if (txMeta.retryCount > RETRY_LIMIT) { - const message = 'Gave up submitting tx ' + txMeta.hash - return log.warning(message) - } + if (txMeta.retryCount > RETRY_LIMIT) return txMeta.retryCount++ const rawTx = txMeta.rawTx |