feat(indexer): add to modules and implement proto fields (#22544)

This commit is contained in:
Facundo Medica
2024-11-28 09:46:59 +00:00
committed by GitHub
parent 18dcdb8f45
commit bd76b47e1d
74 changed files with 622 additions and 131 deletions
+1 -1
View File
@@ -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
+2 -1
View File
@@ -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 {
+1 -2
View File
@@ -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)