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 {