cosmos-sdk/x/genutil/codec.go

24 lines
547 B
Go

package genutil
import (
"github.com/cosmos/cosmos-sdk/codec"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/x/auth"
"github.com/cosmos/cosmos-sdk/x/staking"
)
// generic sealed codec to be used throughout this module
var moduleCdc *codec.Codec
func init() {
cdc := codec.New()
// TODO abstract genesis transactions registration back to staking
// required for genesis transactions
staking.RegisterCodec(cdc)
auth.RegisterCodec(cdc)
sdk.RegisterCodec(cdc)
codec.RegisterCrypto(cdc)
moduleCdc = cdc.Seal()
}