9 lines
177 B
Go
9 lines
177 B
Go
|
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)
|
||
|
}
|