Skip to content

Commit

Permalink
feat(dashmate): optional initial core chain locked height (#542)
Browse files Browse the repository at this point in the history
* feat(dashmate): optional initial core chain locked height

* fix: typo

* fix: && is not allowed
  • Loading branch information
shumkov authored Sep 4, 2023
1 parent 5c4e7ab commit 67a635d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ansible/roles/dashmate/templates/dashmate.json.j2
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@
"genesis": {
"genesis_time": "{{ genesis_time }}",
"chain_id": "dash-{{ ( 'devnet-' + dash_devnet_name if dash_network == 'devnet' else dash_network ) if tenderdash_chain_id is not defined else tenderdash_chain_id }}",
"initial_core_chain_locked_height": {{ platform_initial_core_chain_locked_height | int }},
{% if initial_core_chain_locked_height is defined and initial_core_chain_locked_height != "" %}"initial_core_chain_locked_height": {{ platform_initial_core_chain_locked_height | int }},{% endif %}
"consensus_params": {
"timeout": {
"propose": "50000000000",
Expand Down Expand Up @@ -283,4 +283,4 @@
"environment": "{{ node_environment }}"
}
}
}
}

0 comments on commit 67a635d

Please sign in to comment.