mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 23:58:06 +01:00
a49a4a066c
* expand transaction constants coverage * touchups * dont import inside of e2e * Update app/scripts/controllers/transactions/tx-state-manager.js Co-authored-by: Mark Stacey <markjstacey@gmail.com> * Update test/unit/app/controllers/transactions/tx-controller-test.js Co-authored-by: Mark Stacey <markjstacey@gmail.com> Co-authored-by: Mark Stacey <markjstacey@gmail.com>
33 lines
685 B
JavaScript
33 lines
685 B
JavaScript
// next version number
|
|
import { TRANSACTION_STATUSES } from '../../../shared/constants/transaction'
|
|
import failTxsThat from './fail-tx'
|
|
|
|
const version = 29
|
|
|
|
// time
|
|
const seconds = 1000
|
|
const minutes = 60 * seconds
|
|
const hours = 60 * minutes
|
|
const unacceptableDelay = 12 * hours
|
|
|
|
/*
|
|
|
|
normalizes txParams on unconfirmed txs
|
|
|
|
*/
|
|
|
|
export default {
|
|
version,
|
|
|
|
migrate: failTxsThat(
|
|
version,
|
|
'Stuck in approved state for too long.',
|
|
(txMeta) => {
|
|
const isApproved = txMeta.status === TRANSACTION_STATUSES.APPROVED
|
|
const createdTime = txMeta.submittedTime
|
|
const now = Date.now()
|
|
return isApproved && now - createdTime > unacceptableDelay
|
|
},
|
|
),
|
|
}
|