mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-22 12:46:44 +00:00
core/txpool/blobpool: accept tx if stored in gapped queue
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
This commit is contained in:
parent
6cb97cb721
commit
4e0aa78bd3
1 changed files with 1 additions and 0 deletions
|
|
@ -1742,6 +1742,7 @@ func (p *BlobPool) add(tx *types.Transaction) (err error) {
|
||||||
from, _ := types.Sender(p.signer, tx)
|
from, _ := types.Sender(p.signer, tx)
|
||||||
p.gapped[from] = append(p.gapped[from], tx)
|
p.gapped[from] = append(p.gapped[from], tx)
|
||||||
log.Trace("Blob transaction added to Gapped blob queue", "hash", tx.Hash(), "from", from, "nonce", tx.Nonce(), "qlen", len(p.gapped[from]))
|
log.Trace("Blob transaction added to Gapped blob queue", "hash", tx.Hash(), "from", from, "nonce", tx.Nonce(), "qlen", len(p.gapped[from]))
|
||||||
|
return nil
|
||||||
case errors.Is(err, core.ErrInsufficientFunds):
|
case errors.Is(err, core.ErrInsufficientFunds):
|
||||||
addOverdraftedMeter.Mark(1)
|
addOverdraftedMeter.Mark(1)
|
||||||
case errors.Is(err, txpool.ErrAccountLimitExceeded):
|
case errors.Is(err, txpool.ErrAccountLimitExceeded):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue