Skip to content

Commit

Permalink
generate files
Browse files Browse the repository at this point in the history
  • Loading branch information
kingpinXD committed Jun 20, 2024
1 parent c91ffeb commit a25028d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
* [2329](https://github.com/zeta-chain/node/pull/2329) - fix TODOs in rpc unit tests
* [2342](https://github.com/zeta-chain/node/pull/2342) - extend rpc unit tests with testing extension to include synthetic ethereum txs
* [2299](https://github.com/zeta-chain/node/pull/2299) - add `zetae2e` command to deploy test contracts
* [2360](https://github.com/zeta-chain/node/pull/2360) - add stateful e2e tests.

### Fixes

Expand Down
7 changes: 6 additions & 1 deletion cmd/zetacored/parse_genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,12 @@ func CmdParseGenesisFile() *cobra.Command {
return cmd
}

func ImportDataIntoFile(genDoc *types.GenesisDoc, importFile *types.GenesisDoc, cdc codec.Codec, modifyEnabled bool) error {
func ImportDataIntoFile(
genDoc *types.GenesisDoc,
importFile *types.GenesisDoc,
cdc codec.Codec,
modifyEnabled bool,
) error {

appState, err := genutiltypes.GenesisStateFromGenDoc(*genDoc)
if err != nil {
Expand Down
3 changes: 2 additions & 1 deletion docs/cli/zetacored/zetacored_parse-genesis-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ zetacored parse-genesis-file [import-genesis-file] [optional-genesis-file] [flag
### Options

```
-h, --help help for parse-genesis-file
-h, --help help for parse-genesis-file
--modify Modify the genesis file before importing
```

### Options inherited from parent commands
Expand Down

0 comments on commit a25028d

Please sign in to comment.