node/proc: increase retryLimitOurs to 30h

This commit is contained in:
tbjump 2023-08-17 21:34:08 +00:00 committed by tbjump
parent 4e1cb5d2c3
commit 795ea8a7e7
1 changed files with 4 additions and 2 deletions

View File

@ -57,7 +57,9 @@ var (
const (
settlementTime = time.Second * 30
retryLimitOurs = time.Hour * 24
// retryLimitOurs defines how long this Guardian will keep an observation in the local state before discarding it.
// Oservations from other Guardians can take up to 24h to arrive if they are held in their Governor. Therefore, this value should be greater than 24h.
retryLimitOurs = time.Hour * 30
retryLimitNotOurs = time.Hour
)