feat(baseapp): extend abci listeners in streaming manager (backport #24160) (#24163)

Co-authored-by: mmsqe <mavis@crypto.com>
Co-authored-by: Alex | Interchain Labs <alex@interchainlabs.io>
This commit is contained in:
mergify[bot]
2025-03-27 19:05:55 +00:00
committed by GitHub
co-authored by mmsqe Alex | Interchain Labs
parent cfda49b436
commit 0fbbf26f63
2 changed files with 5 additions and 0 deletions
+4
View File
@@ -1150,6 +1150,10 @@ func (app *BaseApp) TxEncode(tx sdk.Tx) ([]byte, error) {
return app.txEncoder(tx)
}
func (app *BaseApp) StreamingManager() storetypes.StreamingManager {
return app.streamingManager
}
// Close is called in start cmd to gracefully cleanup resources.
func (app *BaseApp) Close() error {
var errs []error