From 4c51e4ccdae98435cc055e0192c59ae29e9e46f0 Mon Sep 17 00:00:00 2001 From: Cory Schwartz Date: Wed, 1 Jun 2022 00:59:13 -0700 Subject: [PATCH] default 5 sec --- gateway/node.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gateway/node.go b/gateway/node.go index cd3b09f8a..ce859db15 100644 --- a/gateway/node.go +++ b/gateway/node.go @@ -31,7 +31,7 @@ import ( const ( DefaultLookbackCap = time.Hour * 24 DefaultStateWaitLookbackLimit = abi.ChainEpoch(20) - DefaultRateLimitTimeout = time.Minute * 10 + DefaultRateLimitTimeout = time.Second * 5 basicRateLimitTokens = 1 walletRateLimitTokens = 1 chainRateLimitTokens = 2