* mainly sdk.int to cosmossdk.io/math * staking keys * fumpt * var-naming linter errors and a fumpt * Update CHANGELOG.md * Update .golangci.yml * Update CHANGELOG.md * Update test_helpers.go * Update test_helpers.go * fumpt and lint * this lints the db module, and makes it easier to use. It adds breaking name changes * DBConnection -> Connection * previous commit contained a merge error * Update test_helpers.go * Update test_helpers.go * db renamings * merge master * changelog * DBWriter -> Writer * consistent multistore reciever * standard recievers for multistore v2alpha1 * general cleanup of linting issues * more linter fixes * remove prealloc linter * nolint the secp256k1 import * nolint the secp256k1 package * completenolint resulting in a diff that has only nolints
57 lines
1.4 KiB
Go
57 lines
1.4 KiB
Go
package testdata
|
|
|
|
import (
|
|
amino "github.com/tendermint/go-amino"
|
|
|
|
"github.com/cosmos/cosmos-sdk/codec/types"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/types/msgservice"
|
|
tx "github.com/cosmos/cosmos-sdk/types/tx"
|
|
)
|
|
|
|
func NewTestInterfaceRegistry() types.InterfaceRegistry {
|
|
registry := types.NewInterfaceRegistry()
|
|
RegisterInterfaces(registry)
|
|
return registry
|
|
}
|
|
|
|
func RegisterInterfaces(registry types.InterfaceRegistry) {
|
|
registry.RegisterImplementations((*sdk.Msg)(nil), &TestMsg{})
|
|
|
|
registry.RegisterInterface("Animal", (*Animal)(nil))
|
|
registry.RegisterImplementations(
|
|
(*Animal)(nil),
|
|
&Dog{},
|
|
&Cat{},
|
|
)
|
|
registry.RegisterImplementations(
|
|
(*HasAnimalI)(nil),
|
|
&HasAnimal{},
|
|
)
|
|
registry.RegisterImplementations(
|
|
(*HasHasAnimalI)(nil),
|
|
&HasHasAnimal{},
|
|
)
|
|
registry.RegisterImplementations(
|
|
(*tx.ExtensionOptionI)(nil),
|
|
&Cat{},
|
|
)
|
|
|
|
msgservice.RegisterMsgServiceDesc(registry, &_Msg_serviceDesc)
|
|
}
|
|
|
|
func NewTestAmino() *amino.Codec {
|
|
cdc := amino.NewCodec()
|
|
cdc.RegisterInterface((*Animal)(nil), nil)
|
|
cdc.RegisterConcrete(&Dog{}, "testdata/Dog", nil)
|
|
cdc.RegisterConcrete(&Cat{}, "testdata/Cat", nil)
|
|
|
|
cdc.RegisterInterface((*HasAnimalI)(nil), nil)
|
|
cdc.RegisterConcrete(&HasAnimal{}, "testdata/HasAnimal", nil)
|
|
|
|
cdc.RegisterInterface((*HasHasAnimalI)(nil), nil)
|
|
cdc.RegisterConcrete(&HasHasAnimal{}, "testdata/HasHasAnimal", nil)
|
|
|
|
return cdc
|
|
}
|