[ENG-681]: Comet ReCheckTx fix for the app-side mempool (#53)

Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>
This commit is contained in:
David Terpay
2023-04-10 16:22:55 +00:00
committed by GitHub
co-authored by Aleksandr Bezobchuk
parent fe35a9eeb2
commit 0579f8b1a2
6 changed files with 94 additions and 12 deletions
+1 -1
View File
@@ -64,6 +64,6 @@ func (suite *KeeperTestSuite) SetupTest() {
err := suite.builderKeeper.SetParams(suite.ctx, types.DefaultParams())
suite.Require().NoError(err)
suite.mempool = mempool.NewAuctionMempool(suite.encCfg.TxConfig.TxDecoder(), 0)
suite.mempool = mempool.NewAuctionMempool(suite.encCfg.TxConfig.TxDecoder(), suite.encCfg.TxConfig.TxEncoder(), 0)
suite.msgServer = keeper.NewMsgServerImpl(suite.builderKeeper)
}