Skip to content

Commit

Permalink
shutter-service: updated deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
blockchainluffy committed Dec 26, 2024
1 parent f62ce80 commit f95c2db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions script/Deploy.service.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
3 changes: 1 addition & 2 deletions script/SubmitTransaction.service.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit f95c2db

Please sign in to comment.