From 4177fec075bacb26dd59191e66c8bb912049bb25 Mon Sep 17 00:00:00 2001 From: harkamal Date: Tue, 1 Oct 2024 22:15:48 +0530 Subject: [PATCH] spell checl --- packages/client/src/service/txpool.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/client/src/service/txpool.ts b/packages/client/src/service/txpool.ts index 2e13c42f50b..e6073c33138 100644 --- a/packages/client/src/service/txpool.ts +++ b/packages/client/src/service/txpool.ts @@ -401,7 +401,7 @@ export class TxPool { pruneBlobsAndProofsCache() { const pruneLength = this.blobsAndProofsByHash.size - this.config.blobsAndProofsCacheLength let pruned = 0 - // since keys() is sorted by insertion order this prunes the olddest data in cache + // since keys() is sorted by insertion order this prunes the oldest data in cache for (const versionedHash of this.blobsAndProofsByHash.keys()) { if (pruned >= pruneLength) { break