mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-04-27 03:52:24 +00:00
update comment
This commit is contained in:
parent
666bff4d01
commit
ca028c8ee1
1 changed files with 2 additions and 2 deletions
|
|
@ -620,7 +620,7 @@ func (p *BlobPool) recheck(addr common.Address, inclusions map[common.Hash]uint6
|
||||||
p.lookup.untrack(txs[i])
|
p.lookup.untrack(txs[i])
|
||||||
|
|
||||||
if filled && inclusions != nil {
|
if filled && inclusions != nil {
|
||||||
// If the tx metadata is recorded by limbo, we don't need to delete the tx from db.
|
// If the tx metadata is recorded by limbo, keep the tx in the db.
|
||||||
if p.offload(addr, txs[i], inclusions) {
|
if p.offload(addr, txs[i], inclusions) {
|
||||||
ids = ids[:len(ids)-1]
|
ids = ids[:len(ids)-1]
|
||||||
}
|
}
|
||||||
|
|
@ -664,7 +664,7 @@ func (p *BlobPool) recheck(addr common.Address, inclusions map[common.Hash]uint6
|
||||||
|
|
||||||
// Included transactions blobs need to be moved to the limbo
|
// Included transactions blobs need to be moved to the limbo
|
||||||
if inclusions != nil {
|
if inclusions != nil {
|
||||||
// If the tx metadata is recorded by limbo, we don't need to delete the tx from db.
|
// If the tx metadata is recorded by limbo, keep the tx in the db.
|
||||||
if p.offload(addr, txs[0], inclusions) {
|
if p.offload(addr, txs[0], inclusions) {
|
||||||
ids = ids[:len(ids)-1]
|
ids = ids[:len(ids)-1]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue