diff --git a/node/pkg/processor/cleanup.go b/node/pkg/processor/cleanup.go index 96e24627c..b3befda17 100644 --- a/node/pkg/processor/cleanup.go +++ b/node/pkg/processor/cleanup.go @@ -56,8 +56,10 @@ var ( ) const ( - settlementTime = time.Second * 30 - retryLimitOurs = time.Hour * 24 + settlementTime = time.Second * 30 + // 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 )