Skip to content

Commit

Permalink
fix mkchain used to use signer by default but doesn't anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasochem committed Oct 23, 2023
1 parent cc77815 commit 4fa7aab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mkchain/tqchain/mkchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,9 +275,9 @@ def main():
],
}

signers = {
octezSigners = {
"tezos-signer-0": {
"sign_for_accounts": [
"accounts": [
f"{ARCHIVE_BAKER_NODE_NAME}-{n}" for n in range(args.number_of_bakers)
]
}
Expand Down Expand Up @@ -308,7 +308,7 @@ def main():
**base_constants,
"bootstrap_peers": bootstrap_peers,
"accounts": accounts["secret"],
"signers": signers,
"octezSigners": octezSigners,
"nodes": creation_nodes,
**activation,
}
Expand Down

0 comments on commit 4fa7aab

Please sign in to comment.