Merge pull request #2304 from MetaMask/i1531-UpdateTxStatesOnInit

Update status of pending transactions on startup
feature/default_network_editable
kumavis 7 years ago committed by GitHub
commit fa11bbf996
  1. 2
      CHANGELOG.md
  2. 1
      app/scripts/lib/pending-tx-tracker.js

@ -2,6 +2,8 @@
## Current Master
- Fix bug where some transactions would be shown as pending forever, even after successfully mined.
## 3.10.9 2017-10-5
- Only rebrodcast transactions for a day not a days worth of blocks

@ -27,6 +27,7 @@ module.exports = class PendingTransactionTracker extends EventEmitter {
this.getPendingTransactions = config.getPendingTransactions
this.getCompletedTransactions = config.getCompletedTransactions
this.publishTransaction = config.publishTransaction
this._checkPendingTxs()
}
// checks if a signed tx is in a block and

Loading…
Cancel
Save