From 79296fad710551b494e50fce102a01d60e6c4550 Mon Sep 17 00:00:00 2001 From: Devon Bear Date: Wed, 4 Oct 2023 09:53:41 -0400 Subject: [PATCH] expose --- baseapp/baseapp.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/baseapp/baseapp.go b/baseapp/baseapp.go index d890d802204..4fe2c7e69d6 100644 --- a/baseapp/baseapp.go +++ b/baseapp/baseapp.go @@ -406,6 +406,11 @@ func (app *BaseApp) AnteHandler() sdk.AnteHandler { return app.anteHandler } +// Mempool returns the Mempool of the app. +func (app *BaseApp) Mempool() mempool.Mempool { + return app.mempool +} + // Init initializes the app. It seals the app, preventing any // further modifications. In addition, it validates the app against // the earlier provided settings. Returns an error if validation fails.