From fa60fa2fb73af4dea5b02f7045e58a59b632cedd Mon Sep 17 00:00:00 2001 From: Nicolas Ochem Date: Tue, 14 Nov 2023 16:36:20 -0800 Subject: [PATCH] mkchain: ensure authorized_key gets no genesis baking rights --- mkchain/tqchain/mkchain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkchain/tqchain/mkchain.py b/mkchain/tqchain/mkchain.py index da8364e44..f54b19ffe 100644 --- a/mkchain/tqchain/mkchain.py +++ b/mkchain/tqchain/mkchain.py @@ -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", }