diff --git a/script/Deploy.service.s.sol b/script/Deploy.service.s.sol index f0e8aa7..5d9940a 100644 --- a/script/Deploy.service.s.sol +++ b/script/Deploy.service.s.sol @@ -12,6 +12,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(); diff --git a/script/SubmitTransaction.service.s.sol b/script/SubmitTransaction.service.s.sol index b2f51fe..7be93a7 100644 --- a/script/SubmitTransaction.service.s.sol +++ b/script/SubmitTransaction.service.s.sol @@ -11,8 +11,7 @@ contract SubmitTransaction is Script { vm.envAddress("REGISTRY_ADDRESS") ); uint64 eon = uint64(vm.envUint("EON")); - // bytes32 identityPrefix = vm.envBytes32("IDENTITY_PREFIX"); - bytes32 identityPrefix = "xxnxxx"; + bytes32 identityPrefix = vm.envBytes32("IDENTITY_PREFIX"); uint64 ts = uint64(vm.envUint("TIMESTAMP")); vm.startBroadcast(privateKey);