mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-21 12:16:44 +00:00
fix lint
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
This commit is contained in:
parent
66eae3c0db
commit
52efe146f3
1 changed files with 1 additions and 1 deletions
|
|
@ -1927,7 +1927,7 @@ func (p *BlobPool) add(tx *types.Transaction) (err error) {
|
|||
delete(p.gappedSource, tx.Hash())
|
||||
if tx.Nonce() == firstgap {
|
||||
// We are under lock. Add the first transaction in a goroutine to avoid blocking.
|
||||
// This might lead to a race beteen new calls to add and the revalidation here,
|
||||
// This might lead to a race between new calls to add and the revalidation here,
|
||||
// we should revisit if this is a potential issue.
|
||||
go func() {
|
||||
if err := p.add(tx); err == nil {
|
||||
|
|
|
|||
Loading…
Reference in a new issue