From ce0b06ced66c6f4fbf0a67c67e26843d01873d7d Mon Sep 17 00:00:00 2001 From: Pablo Carranza Velez Date: Fri, 23 Aug 2024 11:53:16 -0300 Subject: [PATCH] fix: bump attestation signer cache size to 20k --- packages/indexer-service/src/allocations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/indexer-service/src/allocations.ts b/packages/indexer-service/src/allocations.ts index c6dc98d64..7dad94337 100644 --- a/packages/indexer-service/src/allocations.ts +++ b/packages/indexer-service/src/allocations.ts @@ -37,7 +37,7 @@ export const ensureAttestationSigners = ({ const logger = parentLogger.child({ component: 'AttestationSignerCache' }) const cache: AttestationSignerCache = new LRUCache(null, { - maxlen: 10000, + maxlen: 20000, }) const signers = allocations.map(async allocations => {