mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
76a2a9bb8b
* @metamask/eslint-config@5.0.0 * Update eslintrc and prettierrc * yarn lint:fix
33 lines
697 B
JavaScript
33 lines
697 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;
|
|
},
|
|
),
|
|
};
|