We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents de8a5dc + f5e40f1 commit e1b0285Copy full SHA for e1b0285
cardano_clusterlib/conway_gov_committee_group.py
@@ -93,11 +93,11 @@ def gen_hot_key_auth_cert(
93
)
94
95
if hot_key:
96
- hot_key_args = ["--hot-key", str(hot_key)]
+ hot_key_args = ["--hot-verification-key", str(hot_key)]
97
elif hot_key_file:
98
- hot_key_args = ["--hot-key-file", str(hot_key_file)]
+ hot_key_args = ["--hot-verification-key-file", str(hot_key_file)]
99
elif hot_key_hash:
100
- hot_key_args = ["--hot-key-hash", str(hot_key_hash)]
+ hot_key_args = ["--hot-verification-key-hash", str(hot_key_hash)]
101
else:
102
msg = "Either `hot_key`, `hot_key_file` or `hot_key_hash` is needed."
103
raise AssertionError(msg)
0 commit comments