cosmos-sdk/server/v2/streaming/context.go
Matt Kocubinski 2d014b26c2
feat: simapp/v2 (#20412)
Co-authored-by: marbar3778 <marbar3778@yahoo.com>
Co-authored-by: Marko <marko@baricevic.me>
Co-authored-by: Likhita Polavarapu <78951027+likhita-809@users.noreply.github.com>
Co-authored-by: unknown unknown <unknown@unknown>
2024-06-19 15:18:32 +00:00

12 lines
265 B
Go

package streaming
import "cosmossdk.io/core/log"
// Context is an interface used by an App to pass context information
// needed to process store streaming requests.
type Context interface {
BlockHeight() int64
Logger() log.Logger
StreamingManager() Manager
}