feat(indexer): add to modules and implement proto fields (#22544)
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
||||
module github.com/cosmos/cosmos-sdk/tests
|
||||
|
||||
go 1.23.1
|
||||
go 1.23.3
|
||||
|
||||
require (
|
||||
cosmossdk.io/api v0.7.6
|
||||
|
||||
@@ -4,6 +4,8 @@ import (
|
||||
"context"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"cosmossdk.io/core/router"
|
||||
"cosmossdk.io/core/transaction"
|
||||
"cosmossdk.io/depinject"
|
||||
@@ -26,7 +28,6 @@ import (
|
||||
_ "github.com/cosmos/cosmos-sdk/x/auth/tx/config" // import as blank for app wiring``
|
||||
_ "github.com/cosmos/cosmos-sdk/x/auth/vesting" // import as blank for app wiring
|
||||
_ "github.com/cosmos/cosmos-sdk/x/genutil" // import as blank for app wiring
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
type suite struct {
|
||||
|
||||
@@ -128,8 +128,7 @@ func (e *eventManager) EmitKV(eventType string, attrs ...event.Attribute) error
|
||||
var _ branch.Service = &BranchService{}
|
||||
|
||||
// custom branch service for integration tests
|
||||
type BranchService struct {
|
||||
}
|
||||
type BranchService struct{}
|
||||
|
||||
func (bs *BranchService) Execute(ctx context.Context, f func(ctx context.Context) error) error {
|
||||
_, ok := ctx.Value(contextKey).(*integrationContext)
|
||||
|
||||
Reference in New Issue
Block a user