Skip to content

Commit

Permalink
update revision height in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mpoke committed Oct 17, 2024
1 parent 621af72 commit 0d97b31
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/docs/build/modules/02-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -1660,7 +1660,7 @@ where `update-consumer-msg.json` contains:
"initialization_parameters":{
"initial_height":{
"revision_number": 1,
"revision_height": 0
"revision_height": 1
},
"genesis_hash": "",
"binary_hash": "",
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/consumer-development/onboarding.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Example of initialization parameters:
// Initial height of new consumer chain.
// For a completely new chain, this will be {0,1}.
"initial_height" : {
"revision_height": 0,
"revision_height": 1,
"revision_number": 1,
},
// Hash of the consumer chain genesis state without the consumer CCV module genesis params.
Expand Down
4 changes: 2 additions & 2 deletions x/ccv/provider/client/cli/tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ where create_consumer.json has the following structure:
"initialization_parameters": {
"initial_height": {
"revision_number": 1,
"revision_height": 0
"revision_height": 1
},
"genesis_hash": "",
"binary_hash": "",
Expand Down Expand Up @@ -332,7 +332,7 @@ where update_consumer.json has the following structure:
"initialization_parameters": {
"initial_height": {
"revision_number": 1,
"revision_height": 0
"revision_height": 1
},
"genesis_hash": "",
"binary_hash": "",
Expand Down

0 comments on commit 0d97b31

Please sign in to comment.