Skip to content

Commit

Permalink
chore(baseapp): add StreamingManager getter
Browse files Browse the repository at this point in the history
  • Loading branch information
GAtom22 committed Aug 5, 2024
1 parent 414cbd0 commit edcb4fe
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions baseapp/baseapp.go
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,11 @@ func (app *BaseApp) Mempool() mempool.Mempool {
return app.mempool
}

// StreamingManager returns the StreamingManager of the app.
func (app *BaseApp) StreamingManager() storetypes.StreamingManager {
return app.streamingManager
}

// 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.
Expand Down

0 comments on commit edcb4fe

Please sign in to comment.