Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: Add note to update the vote_extensions_enable_height value in genesis.json #60

Merged
merged 1 commit into from
Oct 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions x/cada/integration_docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,11 @@ After the initialization process is complete, you can start the chain by running
cada start
```

**Note** : In the [script](/simapp/init-chain.sh), the vote_extensions_enable_height value in genesis.json is set to 1. If you are running the node manually without using the script, ensure that this value is also set to 1 in genesis.json.

It is necessary to modify this value to 1 even when integrating CADA into your desired Cosmos SDK chain.

Failing to set this value to 1 may cause issues with vote extension decoding, such as the error ERR failed to decode vote extension err="unexpected end of JSON input", because vote extensions will only be processed starting from height 1.
These steps will get the chain up and running in your local environment and post the data to avail light client. Be sure to run the avail light node and modify the configuration as mentioned above.

These steps will get the chain up and running in your local environment and post the data to avail light client. Be sure to run the avail light node and modify the configuration as mentioned above.
Loading