change limit of txn count in mempool for each sender from 16 to 48

This commit is contained in:
Solovyov1796 2025-03-16 22:27:34 +08:00
parent 962943d32b
commit d8e968146b

View File

@ -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)