diff --git a/cmd/0gchaind/app.go b/cmd/0gchaind/app.go index 25f3291a..c1180491 100644 --- a/cmd/0gchaind/app.go +++ b/cmd/0gchaind/app.go @@ -109,8 +109,8 @@ func (ac appCreator) newApp( if appOpts.Get(flagSkipLoadLatest) != nil { skipLoadLatest = cast.ToBool(appOpts.Get(flagSkipLoadLatest)) } - - mempool := app.NewPriorityMempool(app.PriorityNonceWithMaxTx(cast.ToInt(appOpts.Get(server.FlagMempoolMaxTxs)))) + mempoolMaxTxs := cast.ToInt(appOpts.Get(server.FlagMempoolMaxTxs)) + mempool := app.NewPriorityMempool(app.PriorityNonceWithMaxTx(mempoolMaxTxs)) bApp := app.NewBaseApp(logger, db, ac.encodingConfig, baseapp.SetPruning(pruningOpts), @@ -127,6 +127,7 @@ func (ac appCreator) newApp( baseapp.SetIAVLLazyLoading(cast.ToBool(appOpts.Get(server.FlagIAVLLazyLoading))), baseapp.SetChainID(chainID), baseapp.SetMempool(mempool), + baseapp.SetMempoolMaxTxs(mempoolMaxTxs), baseapp.SetTxInfoExtracter(extractTxInfo), ) bApp.SetTxEncoder(ac.encodingConfig.TxConfig.TxEncoder()) diff --git a/go.mod b/go.mod index 15434cb9..9f770e94 100644 --- a/go.mod +++ b/go.mod @@ -238,7 +238,7 @@ replace ( // Use the cosmos keyring code github.com/99designs/keyring => github.com/cosmos/keyring v1.2.0 // Use cometbft fork of tendermint - github.com/cometbft/cometbft => github.com/0glabs/cometbft v0.37.9-0glabs.1 + github.com/cometbft/cometbft => github.com/0glabs/cometbft v0.37.9-0glabs.2 github.com/cometbft/cometbft-db => github.com/kava-labs/cometbft-db v0.9.1-kava.2 // Use cosmos-sdk fork with backported fix for unsafe-reset-all, staking transfer events, and custom tally handler support // github.com/cosmos/cosmos-sdk => github.com/0glabs/cosmos-sdk v0.46.11-kava.3 diff --git a/go.sum b/go.sum index f0821f5f..1d74f1d3 100644 --- a/go.sum +++ b/go.sum @@ -209,8 +209,8 @@ filippo.io/edwards25519 v1.0.0 h1:0wAIcmJUqRdI8IJ/3eGi5/HwXZWPujYXXlkrQogz0Ek= filippo.io/edwards25519 v1.0.0/go.mod h1:N1IkdkCkiLB6tki+MYJoSx2JTY9NUlxZE7eHn5EwJns= git.sr.ht/~sircmpwn/getopt v0.0.0-20191230200459-23622cc906b3/go.mod h1:wMEGFFFNuPos7vHmWXfszqImLppbc0wEhh6JBfJIUgw= git.sr.ht/~sircmpwn/go-bare v0.0.0-20210406120253-ab86bc2846d9/go.mod h1:BVJwbDfVjCjoFiKrhkei6NdGcZYpkDkdyCdg1ukytRA= -github.com/0glabs/cometbft v0.37.9-0glabs.1 h1:KQJG17Y21suKP3QNICLto4b5Ak73XbSmKxeLbg0ZM68= -github.com/0glabs/cometbft v0.37.9-0glabs.1/go.mod h1:j0Q3RqrCd+cztWCugs3obbzC4NyHGBPZZjtm/fWV00I= +github.com/0glabs/cometbft v0.37.9-0glabs.2 h1:/2Kz7Gv17u1BJDTonoZaIw4STwy1G+36k41xJ3fvtWM= +github.com/0glabs/cometbft v0.37.9-0glabs.2/go.mod h1:j0Q3RqrCd+cztWCugs3obbzC4NyHGBPZZjtm/fWV00I= github.com/0glabs/cosmos-sdk v0.47.10-0glabs.10 h1:NJp0RwczHBO4EvrQdDxxftHOgUDBtNh7M/vpaG7wFtQ= github.com/0glabs/cosmos-sdk v0.47.10-0glabs.10/go.mod h1:KskIVnhXTFqrw7CDccMvx7To5KzUsOomIsQV7sPGOog= github.com/0glabs/ethermint v0.21.0-0g.v3.1.12 h1:IRVTFhDEH2J5w8ywQW7obXQxYhJYib70SNgKqLOXikU=