Skip to content

Commit 5fb2236

Browse files
authored
fix(dolos): template conditionals using incorrect equivalence checks (#158)
Signed-off-by: Chris Gianelloni <[email protected]>
1 parent af19168 commit 5fb2236

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roles/dolos/templates/daemon.toml.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ alonzo_path = "/config/alonzo-genesis.json"
4545
{% if dolos_network == "preprod" %}
4646
aggregator = "https://aggregator.release-preprod.api.mithril.network/aggregator"
4747
genesis_key = "5b3132372c37332c3132342c3136312c362c3133372c3133312c3231332c3230372c3131372c3139382c38352c3137362c3139392c3136322c3234312c36382c3132332c3131392c3134352c31332c3233322c3234332c34392c3232392c322c3234392c3230352c3230352c33392c3233352c34345d"
48-
{% elif dolos_network = "preview" %}
48+
{% elif dolos_network == "preview" %}
4949
aggregator = "https://aggregator.prerelease-preview.api.mithril.network/aggregator"
5050
genesis_key = "5b3132372c37332c3132342c3136312c362c3133372c3133312c3231332c3230372c3131372c3139382c38352c3137362c3139392c3136322c3234312c36382c3132332c3131392c3134352c31332c3233322c3234332c34392c3232392c322c3234392c3230352c3230352c33392c3233352c34345d"
51-
{% elif dolos_network = "sanchonet" %}
51+
{% elif dolos_network == "sanchonet" %}
5252
aggregator = "https://aggregator.prerelease-sanchonet.api.mithril.network/aggregator"
5353
genesis_key = "5b3132372c37332c3132342c3136312c362c3133372c3133312c3231332c3230372c3131372c3139382c38352c3137362c3139392c3136322c3234312c36382c3132332c3131392c3134352c31332c3233322c3234332c34392c3232392c322c3234392c3230352c3230352c33392c3233352c34345d"
5454
{% else %}

0 commit comments

Comments
 (0)