Skip to content

Commit

Permalink
chore(baseapp): add getter function for StreamManager (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
GAtom22 authored Aug 6, 2024
1 parent 414cbd0 commit 83da208
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ Ref: https://keepachangelog.com/en/1.0.0/

# Changelog

## Unreleased

* (baseapp) [#??](https://github.com/evmos/cosmos-sdk/pull/??) Add a getter function for the `StreamManager`.

## [v0.50.8-evmos](https://github.com/evmos/cosmos-sdk/releases/tag/v0.50.8-evmos) - 2024-07-18

* (cache-store) [#52](https://github.com/evmos/cosmos-sdk/pull/52) Add a deep copy method for the store.
Expand Down
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 83da208

Please sign in to comment.