From 2c436a7d45262da7456a9d82cd576e79bbebb199 Mon Sep 17 00:00:00 2001 From: Solovyov1796 Date: Fri, 21 Mar 2025 01:55:18 +0800 Subject: [PATCH] allow to replace sender's only txn in mempool --- app/priority_nonce.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/priority_nonce.go b/app/priority_nonce.go index d6bb9e3a..4b607cbe 100644 --- a/app/priority_nonce.go +++ b/app/priority_nonce.go @@ -258,7 +258,7 @@ func (mp *PriorityNonceMempool) Insert(ctx context.Context, tx sdk.Tx) error { continue } - if indexSize > 1 { + if indexSize > 0 { tail := index.Back() if tail != nil { tailKey := tail.Key().(txMeta) @@ -291,8 +291,6 @@ func (mp *PriorityNonceMempool) Insert(ctx context.Context, tx sdk.Tx) error { ) } } 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) } } else {