package mint import ( "github.com/cosmos/cosmos-sdk/codec" ) // generic sealed codec to be used throughout this module var moduleCdc *codec.Codec func init() { cdc := codec.New() codec.RegisterCrypto(cdc) moduleCdc = cdc.Seal() }