15 lines
249 B
Go
15 lines
249 B
Go
package genaccounts
|
|
|
|
import (
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
)
|
|
|
|
// generic sealed codec to be used throughout this module
|
|
var moduleCdc *codec.Codec
|
|
|
|
func init() {
|
|
moduleCdc = codec.New()
|
|
codec.RegisterCrypto(moduleCdc)
|
|
moduleCdc.Seal()
|
|
}
|