Skip to content

Commit

Permalink
fix black
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasochem committed Nov 18, 2023
1 parent 2d3a57b commit dc69359
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mkchain/tqchain/mkchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,9 @@ def main():
for key_type in keys:
accounts[key_type][account] = {
"key": keys[key_type],
"is_bootstrap_baker_account": False if account == "authorized-key-0" else True,
"is_bootstrap_baker_account": False
if account == "authorized-key-0"
else True,
"bootstrap_balance": "4000000000000",
}

Expand Down

0 comments on commit dc69359

Please sign in to comment.