aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/pending-tx-tracker.js
Commit message (Collapse)AuthorAgeFilesLines
* Fix lint warningsDaijiro Wachi2017-10-221-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed warnings: ```md app/scripts/controllers/computed-balances.js + 35:27 warning Missing space before function parentheses space-before-function-paren + 41:14 warning 'address' is never reassigned. Use 'const' instead prefer-const + 61:9 warning 'updater' is never reassigned. Use 'const' instead prefer-const + 68:11 warning 'newState' is never reassigned. Use 'const' instead prefer-const app/scripts/controllers/network.js + 104:29 warning Missing space before function parentheses space-before-function-paren app/scripts/lib/createLoggerMiddleware.js + 4:32 warning Missing space before function parentheses space-before-function-paren + 15:2 warning Newline required at end of file but not found eol-last app/scripts/lib/createOriginMiddleware.js + 4:32 warning Missing space before function parentheses space-before-function-paren + 9:2 warning Newline required at end of file but not found eol-last app/scripts/lib/createProviderMiddleware.js + 5:34 warning Missing space before function parentheses space-before-function-paren + 13:2 warning Newline required at end of file but not found eol-last app/scripts/lib/events-proxy.js + 1:50 warning Missing space before function parentheses space-before-function-paren + 31:2 warning Newline required at end of file but not found eol-last app/scripts/lib/nodeify.js + 2:22 warning Missing space before function parentheses space-before-function-paren + 2:24 warning Missing space before opening brace space-before-blocks + 5:18 warning Missing space before function parentheses space-before-function-paren + 5:20 warning Missing space before opening brace space-before-blocks app/scripts/lib/pending-balance-calculator.js + 16:19 warning Missing space before function parentheses space-before-function-paren app/scripts/lib/pending-tx-tracker.js + 85:11 warning '||' should be placed at the end of the line operator-linebreak + 87:11 warning '||' should be placed at the end of the line operator-linebreak + 88:11 warning '||' should be placed at the end of the line operator-linebreak + 90:11 warning '||' should be placed at the end of the line operator-linebreak + 91:11 warning '||' should be placed at the end of the line operator-linebreak app/scripts/lib/port-stream.js + 3:22 warning Missing space before function parentheses space-before-function-paren + 3:24 warning Missing space before opening brace space-before-blocks app/scripts/lib/tx-gas-utils.js + 84:2 warning Newline required at end of file but not found eol-last app/scripts/lib/tx-state-history-helper.js + 12:37 warning Missing space before function parentheses space-before-function-paren + 23:30 warning Missing space before function parentheses space-before-function-paren + 30:23 warning Missing space before function parentheses space-before-function-paren + 35:28 warning Missing space before function parentheses space-before-function-paren + 41:2 warning Newline required at end of file but not found eol-last app/scripts/lib/tx-state-manager.js + 94:13 warning 'value' is never reassigned. Use 'const' instead prefer-const ui/app/reducers.js + 45:7 warning 'state' is never reassigned. Use 'const' instead prefer-const + 53:7 warning 'stateString' is never reassigned. Use 'const' instead prefer-const ui/lib/tx-helper.js + 27:2 warning Newline required at end of file but not found eol-last ui/app/components/account-dropdowns.js + 163:1 warning More than 2 blank lines not allowed no-multiple-empty-lines ui/app/components/menu-droppo.js + 22:7 warning 'style' is never reassigned. Use 'const' instead prefer-const ui/app/components/shapeshift-form.js + 135:11 warning '&&' should be placed at the end of the line operator-linebreak ui/app/components/typed-message-renderer.js + 35:25 warning Missing space before function parentheses space-before-function-paren + 42:2 warning Newline required at end of file but not found eol-last mascara/server/index.js + 11:42 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 12:36 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 13:33 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 14:40 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 20:29 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 21:29 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 26:40 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat ```
* Merge pull request #2304 from MetaMask/i1531-UpdateTxStatesOnInitkumavis2017-10-071-0/+1
|\ | | | | Update status of pending transactions on startup
| * Check status of pending transactions on startupDan Finlay2017-10-071-0/+1
| | | | | | | | Fixes #1531
* | When checking pending txs, check for successful txs with same nonce.Dan Finlay2017-10-071-0/+20
|/ | | | | | If a successful tx with the same nonce exists, transition tx to the failed state. Fixes #2294
* "fix" hours for messagefrankiebee2017-10-061-1/+2
|
* pending-tx - check time stamp instead of block number for resubmitfrankiebee2017-10-061-3/+4
|
* pending tx tracker - on tx:warn append error message instead of error objkumavis2017-10-031-1/+1
|
* pending tx tracker - tx:warning event includes err objkumavis2017-10-031-2/+2
|
* pending tx tracker - resubmit - warn dont error on unknown errorkumavis2017-10-031-2/+5
|
* pending tx tracker - dont throw on load failurekumavis2017-10-031-1/+0
|
* pending-tx - dont check the balance to rebrodcastfrankiebee2017-09-301-15/+0
|
* Merge branch 'master' into direct-block-trackerkumavis2017-09-281-14/+12
|\
| * pending-tx - move incrementing of the retryCount on the txMeta outside ↵frankiebee2017-09-271-2/+1
| | | | | | | | pending-tx-tracker
| * transactions: make evnt names pretty and eaiser to readfrankiebee2017-09-271-8/+8
| |
| * Merge branch 'master' into transactionControllerRefractorPt3frankiebee2017-09-271-3/+9
| |\
| * | linting && format fixingfrankiebee2017-09-131-5/+4
| | |
* | | style - small whitespace nitpickkumavis2017-09-281-1/+1
| |/ |/|
* | Do not mark a retry tx failed that has been broadcast successfullyDan Finlay2017-09-191-3/+9
|/ | | | | | | | | | | | Fixes #2115 If a tx has been braodcast, the only failures we should accept are: - Never mined - On chain failure We had a section of code that would mark a tx failed during any unknown error during a retry. Now no retry > 1 will ever mark a tx failed, since it has been broadcast, and may be mined.
* Fail transactions after a day of retriesDan Finlay2017-08-241-1/+7
|
* fix getPendingTransactions function for pendingTxTrackerfrankiebee2017-08-091-1/+1
|
* fix class namesfrankiebee2017-08-091-0/+163