reduce stale tx period to 1 day

This commit is contained in:
Josh Harvey 2018-06-17 11:48:53 +01:00
parent 1b33ef9aa7
commit 9d6f3e6d9b

View file

@ -21,9 +21,9 @@ module.exports = {
cancel
}
const STALE_INCOMING_TX_AGE = T.week
const STALE_INCOMING_TX_AGE = T.day
const STALE_LIVE_INCOMING_TX_AGE = 10 * T.minutes
const MAX_NOTIFY_AGE = 2 * T.days
const MAX_NOTIFY_AGE = T.day
const MIN_NOTIFY_AGE = 5 * T.minutes
const INSUFFICIENT_FUNDS_CODE = 570