cosmos-sdk/server/v2/stf/export_test.go
Marko 83c4b9bfb4
chore: upstream stf to main (#20286)
Co-authored-by: testinginprod <98415576+testinginprod@users.noreply.github.com>
2024-05-08 14:50:52 +00:00

15 lines
197 B
Go

package stf
import (
"context"
)
func GetExecutionContext(ctx context.Context) *executionContext {
executionCtx, ok := ctx.(*executionContext)
if !ok {
return nil
}
return executionCtx
}