Skip to content

Commit

Permalink
spell checl
Browse files Browse the repository at this point in the history
  • Loading branch information
g11tech committed Oct 1, 2024
1 parent 4b8b1b5 commit 4177fec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/src/service/txpool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4177fec

Please sign in to comment.