core/txpool/blobpool: update comment

This commit is contained in:
Felix Lange 2026-06-30 23:47:39 +02:00
parent e32ebd2e2e
commit 42c84e048d

View file

@ -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 {