2018-04-26 19:59:30 -07:00
|
|
|
package types
|
|
|
|
|
2018-09-13 11:17:32 -07:00
|
|
|
import "github.com/cosmos/cosmos-sdk/codec"
|
2018-04-26 19:59:30 -07:00
|
|
|
|
|
|
|
// Register the sdk message type
|
2018-09-13 11:17:32 -07:00
|
|
|
func RegisterCodec(cdc *codec.Codec) {
|
2018-04-26 19:59:30 -07:00
|
|
|
cdc.RegisterInterface((*Msg)(nil), nil)
|
2018-06-11 13:09:29 -07:00
|
|
|
cdc.RegisterInterface((*Tx)(nil), nil)
|
2018-04-26 19:59:30 -07:00
|
|
|
}
|