Skip to content

Commit

Permalink
Update DeployAuthSystem.s.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
maurelian committed Sep 17, 2024
1 parent 20f7003 commit 7a309ff
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/contracts-bedrock/scripts/DeployAuthSystem.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,7 @@ contract DeployAuthSystem is Script {

// TODO: replace with a real deployment. The safe deployment logic is fairly complex, so for the purposes of
// this scaffolding PR we'll just etch the code.
// makeAddr("safe") = 0xDC93f9959c0F9c3849461B6468B4592a19567E09
address safe = 0xDC93f9959c0F9c3849461B6468B4592a19567E09;
vm.label(safe, "Safe");
address safe = makeAddr("safe");
vm.etch(safe, type(Safe).runtimeCode);
vm.store(safe, bytes32(uint256(3)), bytes32(uint256(owners.length)));
vm.store(safe, bytes32(uint256(4)), bytes32(uint256(threshold)));
Expand Down

0 comments on commit 7a309ff

Please sign in to comment.