Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(protocol): fix another L2 test failure #18304

Merged
merged 1 commit into from
Oct 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/protocol/script/layer2/DeployDelegateOwner.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import "src/layer2/DelegateOwner.sol";
// forge script --rpc-url https://rpc.mainnet.taiko.xyz script/DeployDelegateOwner.s.sol
contract DeployDelegateOwner is DeployCapability {
address public l2Sam = 0x1670000000000000000000000000000000000006;
address public testAccount2 = vm.envAddress("TEST_ACCOUNT2");
address public testAccount2 = 0x3c181965C5cFAE61a9010A283e5e0C1445649810;

address public l1Owner = testAccount2;
address public l2Admin = testAccount2;
Expand Down