laconicd/x/evm/types/codec.go

20 lines
389 B
Go
Raw Normal View History

2018-11-28 22:19:22 +00:00
package types
import "github.com/cosmos/cosmos-sdk/codec"
var ModuleCdc = codec.New()
2018-11-28 22:19:22 +00:00
func init() {
cdc := codec.New()
RegisterCodec(cdc)
codec.RegisterCrypto(cdc)
ModuleCdc = cdc.Seal()
2018-11-28 22:19:22 +00:00
}
// RegisterCodec registers concrete types and interfaces on the given codec.
2018-11-28 22:19:22 +00:00
func RegisterCodec(cdc *codec.Codec) {
cdc.RegisterConcrete(&EthereumTxMsg{}, "ethermint/MsgEthereumTx", nil)
2018-11-28 22:19:22 +00:00
}