From d8e968146bba1b3ee82723bf85897f6e19c769b3 Mon Sep 17 00:00:00 2001 From: Solovyov1796 <xinyu@0g.ai> Date: Sun, 16 Mar 2025 22:27:34 +0800 Subject: [PATCH] change limit of txn count in mempool for each sender from 16 to 48 --- app/priority_nonce.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/priority_nonce.go b/app/priority_nonce.go index 6a9be970..084c944f 100644 --- a/app/priority_nonce.go +++ b/app/priority_nonce.go @@ -17,7 +17,7 @@ import ( evmtypes "github.com/evmos/ethermint/x/evm/types" ) -const MAX_TXS_PRE_SENDER_IN_MEMPOOL int = 16 +const MAX_TXS_PRE_SENDER_IN_MEMPOOL int = 48 var ( _ mempool.Mempool = (*PriorityNonceMempool)(nil)