mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-14 12:05:18 +00:00
13 lines
335 B
Go
13 lines
335 B
Go
|
package v18de63
|
||
|
|
||
|
import (
|
||
|
"github.com/cosmos/cosmos-sdk/codec"
|
||
|
)
|
||
|
|
||
|
// Note some types are unnecessary for unmarshalling genesis.json so have not been registered
|
||
|
|
||
|
// RegisterCodec registers the account types and interface
|
||
|
func RegisterCodec(cdc *codec.Codec) {
|
||
|
cdc.RegisterConcrete(&ModuleAccount{}, "cosmos-sdk/ModuleAccount", nil)
|
||
|
}
|