mirror of
https://github.com/0glabs/0g-chain.git
synced 2025-04-03 23:36:05 +00:00
allow to replace sender's only txn in mempool
This commit is contained in:
parent
4c48f7ea63
commit
2c436a7d45
@ -258,7 +258,7 @@ func (mp *PriorityNonceMempool) Insert(ctx context.Context, tx sdk.Tx) error {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
if indexSize > 1 {
|
if indexSize > 0 {
|
||||||
tail := index.Back()
|
tail := index.Back()
|
||||||
if tail != nil {
|
if tail != nil {
|
||||||
tailKey := tail.Key().(txMeta)
|
tailKey := tail.Key().(txMeta)
|
||||||
@ -291,8 +291,6 @@ func (mp *PriorityNonceMempool) Insert(ctx context.Context, tx sdk.Tx) error {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// not found any index more than 1 except sender's index
|
|
||||||
// We do not replace the sender's only tx in the mempool
|
|
||||||
return errors.Wrapf(errMempoolIsFull, "%d@%s with priority%d", newKey.nonce, newKey.sender, newKey.priority)
|
return errors.Wrapf(errMempoolIsFull, "%d@%s with priority%d", newKey.nonce, newKey.sender, newKey.priority)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user