Skip to content

Commit

Permalink
fix wrong key
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasochem committed Dec 12, 2023
1 parent b4f4eb5 commit 3ad838f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/config-generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def main():
attest_using_accounts = json.loads(os.getenv("ATTEST_USING_ACCOUNTS", "[]"))
attester_list = ""
for account in attest_using_accounts:
attester_list += f"{all_accounts[account]['public_key_hash']} "
attester_list += f"{all_accounts[account]['pkh']} "

with open("/var/tezos/dal_attester_config", "w") as attester_file:
print(attester_list, file=attester_file)
Expand Down

0 comments on commit 3ad838f

Please sign in to comment.