From 0bfb2464e9132bf4c004d1eb5b8b8eb56b1b3ede Mon Sep 17 00:00:00 2001 From: Konrad Feldmeier Date: Thu, 12 Dec 2024 15:58:13 +0100 Subject: [PATCH 1/2] Try if initialize is necessary --- script/Deploy.gnosh.s.sol | 1 + 1 file changed, 1 insertion(+) diff --git a/script/Deploy.gnosh.s.sol b/script/Deploy.gnosh.s.sol index 64723bc..a71a34d 100644 --- a/script/Deploy.gnosh.s.sol +++ b/script/Deploy.gnosh.s.sol @@ -13,6 +13,7 @@ contract Deploy is Script { address deployerAddress ) public returns (KeyperSetManager) { KeyperSetManager ksm = new KeyperSetManager(deployerAddress); + ksm.initialize(deployerAddress, deployerAddress); // add bootstrap keyper set KeyperSet fakeKeyperset = new KeyperSet(); From 594b8a114692f4ec6b88e8e2dc3d86f21e06e0a3 Mon Sep 17 00:00:00 2001 From: Konrad Feldmeier Date: Thu, 12 Dec 2024 16:01:49 +0100 Subject: [PATCH 2/2] Add comment --- script/Deploy.gnosh.s.sol | 1 + 1 file changed, 1 insertion(+) diff --git a/script/Deploy.gnosh.s.sol b/script/Deploy.gnosh.s.sol index a71a34d..4fb94dd 100644 --- a/script/Deploy.gnosh.s.sol +++ b/script/Deploy.gnosh.s.sol @@ -13,6 +13,7 @@ contract Deploy is Script { address deployerAddress ) public returns (KeyperSetManager) { KeyperSetManager ksm = new KeyperSetManager(deployerAddress); + // otherwise we're not authorized: ksm.initialize(deployerAddress, deployerAddress); // add bootstrap keyper set