From 7a309ff88fe8acbfbafc86ce57ad9867f31c5e3f Mon Sep 17 00:00:00 2001 From: Maurelian Date: Sat, 14 Sep 2024 08:34:37 -0400 Subject: [PATCH] Update DeployAuthSystem.s.sol --- packages/contracts-bedrock/scripts/DeployAuthSystem.s.sol | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/contracts-bedrock/scripts/DeployAuthSystem.s.sol b/packages/contracts-bedrock/scripts/DeployAuthSystem.s.sol index 66f5da20b740..ac2f51ee4be1 100644 --- a/packages/contracts-bedrock/scripts/DeployAuthSystem.s.sol +++ b/packages/contracts-bedrock/scripts/DeployAuthSystem.s.sol @@ -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)));