remove app mempool limit

This commit is contained in:
Solovyov1796 2025-03-07 18:21:02 +08:00
parent 55e01d810d
commit 18d4e1b538

View File

@ -110,7 +110,7 @@ func (ac appCreator) newApp(
skipLoadLatest = cast.ToBool(appOpts.Get(flagSkipLoadLatest)) skipLoadLatest = cast.ToBool(appOpts.Get(flagSkipLoadLatest))
} }
mempoolMaxTxs := cast.ToInt(appOpts.Get(server.FlagMempoolMaxTxs)) mempoolMaxTxs := cast.ToInt(appOpts.Get(server.FlagMempoolMaxTxs))
mempool := app.NewPriorityMempool(app.PriorityNonceWithMaxTx(mempoolMaxTxs)) mempool := app.NewPriorityMempool()
bApp := app.NewBaseApp(logger, db, ac.encodingConfig, bApp := app.NewBaseApp(logger, db, ac.encodingConfig,
baseapp.SetPruning(pruningOpts), baseapp.SetPruning(pruningOpts),