10 lines
215 B
Go
10 lines
215 B
Go
package types
|
|
|
|
import "github.com/cosmos/cosmos-sdk/codec"
|
|
|
|
// Register the sdk message type
|
|
func RegisterCodec(cdc *codec.Codec) {
|
|
cdc.RegisterInterface((*Msg)(nil), nil)
|
|
cdc.RegisterInterface((*Tx)(nil), nil)
|
|
}
|