Skip to content

Commit

Permalink
Fix scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
SoraSuegami committed Sep 13, 2024
1 parent 5342f0a commit 57acb00
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/contracts/script/DeployRecoveryController.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ contract Deploy is Script {
abi.encodeCall(
recoveryControllerImpl.initialize,
(
signer,
initialOwner,
address(verifier),
address(dkim),
address(emailAuthImpl)
Expand Down Expand Up @@ -143,7 +143,7 @@ contract Deploy is Script {
address(simpleWalletImpl),
abi.encodeCall(
simpleWalletImpl.initialize,
(signer, address(recoveryController))
(initialOwner, address(recoveryController))
)
);
simpleWallet = SimpleWallet(payable(address(simpleWalletProxy)));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ contract Deploy is Script {
abi.encodeCall(
recoveryControllerZKSyncImpl.initialize,
(
signer,
initialOwner,
address(verifier),
address(dkim),
address(emailAuthImpl),
Expand Down Expand Up @@ -157,7 +157,7 @@ contract Deploy is Script {
address(simpleWalletImpl),
abi.encodeCall(
simpleWalletImpl.initialize,
(signer, address(recoveryControllerZKSync))
(initialOwner, address(recoveryControllerZKSync))
)
);
simpleWallet = SimpleWallet(payable(address(simpleWalletProxy)));
Expand Down

0 comments on commit 57acb00

Please sign in to comment.