From 42c84e048dc324d40539ca3b11c10ffc761b6266 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Tue, 30 Jun 2026 23:47:39 +0200 Subject: [PATCH] core/txpool/blobpool: update comment --- core/txpool/blobpool/limbo.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/txpool/blobpool/limbo.go b/core/txpool/blobpool/limbo.go index e8cd4c49e8..f941f06ec4 100644 --- a/core/txpool/blobpool/limbo.go +++ b/core/txpool/blobpool/limbo.go @@ -84,7 +84,9 @@ func newLimbo(config *params.ChainConfig, datadir string) (*limbo, error) { } l.store = store - // Migrate legacy limbo entries to blobTxForPool + // Migrate legacy limbo entries to blobTxForPool. Note all ids in `converted` are also + // in `fails`, and the converted entries will be deleted by the loop that handles + // `fails`. for _, id := range convert { data, err := l.store.Get(id) if err != nil {