2018-04-26 19:59:30 -07:00
|
|
|
package types
|
|
|
|
|
|
|
|
import wire "github.com/cosmos/cosmos-sdk/wire"
|
|
|
|
|
|
|
|
// Register the sdk message type
|
|
|
|
func RegisterWire(cdc *wire.Codec) {
|
|
|
|
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
|
|
|
}
|