Skip to content

Commit e1b0285

Browse files
authored
Merge pull request #246 from saratomaz/fix_gen_hot_key_auth_cert
Fix hot_key argument in gen_hot_key_auth_cert
2 parents de8a5dc + f5e40f1 commit e1b0285

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cardano_clusterlib/conway_gov_committee_group.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,11 @@ def gen_hot_key_auth_cert(
9393
)
9494

9595
if hot_key:
96-
hot_key_args = ["--hot-key", str(hot_key)]
96+
hot_key_args = ["--hot-verification-key", str(hot_key)]
9797
elif hot_key_file:
98-
hot_key_args = ["--hot-key-file", str(hot_key_file)]
98+
hot_key_args = ["--hot-verification-key-file", str(hot_key_file)]
9999
elif hot_key_hash:
100-
hot_key_args = ["--hot-key-hash", str(hot_key_hash)]
100+
hot_key_args = ["--hot-verification-key-hash", str(hot_key_hash)]
101101
else:
102102
msg = "Either `hot_key`, `hot_key_file` or `hot_key_hash` is needed."
103103
raise AssertionError(msg)

0 commit comments

Comments
 (0)