fix(rln-relay): increase retries for 1 minute recovery time (#2614)

This commit is contained in:
Aaryamann Challani 2024-04-23 15:11:14 +02:00 committed by GitHub
parent 3ef656fc71
commit 8a2b0dcf7e

View File

@ -7,7 +7,7 @@ type RetryStrategy* = object
retryCount*: uint
proc new*(T: type RetryStrategy): RetryStrategy =
return RetryStrategy(shouldRetry: true, retryDelay: 1000.millis, retryCount: 3)
return RetryStrategy(shouldRetry: true, retryDelay: 4000.millis, retryCount: 15)
template retryWrapper*(
res: auto,