Skip to content

Commit

Permalink
fix: bump attestation signer cache size to 20k
Browse files Browse the repository at this point in the history
  • Loading branch information
pcarranzav committed Aug 23, 2024
1 parent 01766f1 commit 77bfdba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/indexer-service/src/allocations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 => {
Expand Down

0 comments on commit 77bfdba

Please sign in to comment.