cosmos-sdk/x/mint/codec.go

15 lines
237 B
Go

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()
}