add "nonce too low" to the ignored errs list for tx retrys

feature/default_network_editable
frankiebee 7 years ago
parent 822ebca3eb
commit 27cb02bc58
  1. 1
      app/scripts/controllers/transactions.js

@ -433,6 +433,7 @@ module.exports = class TransactionController extends EventEmitter {
|| errorMessage.includes('transaction with the same hash was already imported')
// other
|| errorMessage.includes('gateway timeout')
|| errorMessage.includes('nonce too low')
)
// ignore resubmit warnings, return early
if (isKnownTx) return

Loading…
Cancel
Save