From 188a7c5f2f5bdff5796af91f1c57001cfd726c4d Mon Sep 17 00:00:00 2001 From: maskpp Date: Thu, 22 Jan 2026 22:21:12 +0800 Subject: [PATCH] Update core/txpool/blobpool/limbo.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- core/txpool/blobpool/limbo.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/txpool/blobpool/limbo.go b/core/txpool/blobpool/limbo.go index 924d0de1eb..0049ca7a1b 100644 --- a/core/txpool/blobpool/limbo.go +++ b/core/txpool/blobpool/limbo.go @@ -261,8 +261,8 @@ func (l *limbo) getAndDrop(id uint64) (*limboBlob, error) { // drop removes the blob metadata from the limbo. func (l *limbo) drop(txhash common.Hash) error { if item, ok := l.index[txhash]; ok { - // Retrieve the old blobs from the data store and write them back with a new - // block number. IF anything fails, there's not much to do, go on. + // Remove the blob metadata entry from the limbo store. If anything fails, + // there's not much to do besides logging the error and returning. if err := l.store.Delete(item.id); err != nil { log.Error("Failed to drop old limboed blobs", "tx", txhash, "err", err) return err