From 0b027e10edeeaebe19ef4191f9d325424d410c41 Mon Sep 17 00:00:00 2001
From: Solovyov1796 <xinyu@0g.ai>
Date: Tue, 11 Mar 2025 09:56:10 +0800
Subject: [PATCH] update

---
 app/priority_nonce.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app/priority_nonce.go b/app/priority_nonce.go
index 288b77fc..e2874e97 100644
--- a/app/priority_nonce.go
+++ b/app/priority_nonce.go
@@ -230,7 +230,7 @@ func (mp *PriorityNonceMempool) Insert(ctx context.Context, tx sdk.Tx) error {
 	sk := txMeta{nonce: txInfo.nonce, sender: txInfo.sender}
 	if oldScore, txExists := mp.scores[sk]; txExists {
 		oldTx := senderIndex.Get(newKey).Value.(sdk.Tx)
-		return mp.doTxReplace(ctx, senderIndex, newKey, oldScore, oldTx, tx)
+		return mp.doTxReplace(ctx, newKey, oldScore, oldTx, tx)
 	} else {
 		mempoolSize := mp.CountTx()
 		if mempoolSize >= mp.maxTx {
@@ -340,7 +340,7 @@ func (mp *PriorityNonceMempool) doRemove(oldKey txMeta, decrCnt bool) (sdk.Tx, e
 	return removedElem.Value.(sdk.Tx), nil
 }
 
-func (mp *PriorityNonceMempool) doTxReplace(ctx context.Context, index *skiplist.SkipList, newMate, oldMate txMeta, oldTx, newTx sdk.Tx) error {
+func (mp *PriorityNonceMempool) doTxReplace(ctx context.Context, newMate, oldMate txMeta, oldTx, newTx sdk.Tx) error {
 	if mp.txReplacement != nil && !mp.txReplacement(oldMate.priority, newMate.priority, oldTx, newTx) {
 		return fmt.Errorf(
 			"tx doesn't fit the replacement rule, oldPriority: %v, newPriority: %v, oldTx: %v, newTx: %v",