You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
569 B
28 lines
569 B
6 years ago
|
// next version number
|
||
|
const version = 29
|
||
|
const failTxsThat = require('./fail-tx')
|
||
|
|
||
|
// time
|
||
|
const seconds = 1000
|
||
|
const minutes = 60 * seconds
|
||
|
const hours = 60 * minutes
|
||
|
const unacceptableDelay = 12 * hours
|
||
|
|
||
|
/*
|
||
|
|
||
|
normalizes txParams on unconfirmed txs
|
||
|
|
||
|
*/
|
||
|
|
||
|
module.exports = {
|
||
|
version,
|
||
|
|
||
|
migrate: failTxsThat(version, 'Stuck in approved state for too long.', (txMeta) => {
|
||
|
const isApproved = txMeta.status === 'approved'
|
||
|
const createdTime = txMeta.submittedTime
|
||
|
const now = Date.now()
|
||
|
return isApproved && now - createdTime > unacceptableDelay
|
||
|
}),
|
||
|
}
|
||
|
|