mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-20 11:46:44 +00:00
core/txpool/blobpool: update comment
This commit is contained in:
parent
e32ebd2e2e
commit
42c84e048d
1 changed files with 3 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue