20 lines
486 B
Go
20 lines
486 B
Go
package types
|
|
|
|
import (
|
|
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
|
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
|
|
)
|
|
|
|
// RegisterInterfaces registers the tendermint concrete client-related
|
|
// implementations and interfaces.
|
|
func RegisterInterfaces(registry codectypes.InterfaceRegistry) {
|
|
registry.RegisterImplementations(
|
|
(*authtypes.AccountI)(nil),
|
|
&EthAccount{},
|
|
)
|
|
registry.RegisterImplementations(
|
|
(*authtypes.GenesisAccount)(nil),
|
|
&EthAccount{},
|
|
)
|
|
}
|