Skip to content

Commit

Permalink
mkchain: ensure authorized_key gets no genesis baking rights
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasochem committed Nov 15, 2023
1 parent 4d858ba commit fa60fa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mkchain/tqchain/mkchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def main():
for key_type in keys:
accounts[key_type][account] = {
"key": keys[key_type],
"is_bootstrap_baker_account": True,
"is_bootstrap_baker_account": False if account == "authorized-key-0" else True,
"bootstrap_balance": "4000000000000",
}

Expand Down

0 comments on commit fa60fa2

Please sign in to comment.