Skip to content

Commit

Permalink
fix validate function
Browse files Browse the repository at this point in the history
  • Loading branch information
anajuliabit committed May 13, 2024
1 parent 630be09 commit f995798
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mocks/MockMultisigProposal.sol
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,12 @@ contract MockMultisigProposal is MultisigProposal {
addresses.getAddress("OPTIMISM_L1_NFT_BRIDGE_PROXY")
);

vm.prank(addresses.getAddress("OPTIMISM_PROXY_ADMIN"));
vm.startPrank(addresses.getAddress("OPTIMISM_PROXY_ADMIN"));
require(
proxy.implementation() ==
addresses.getAddress("OPTIMISM_L1_NFT_BRIDGE_IMPLEMENTATION"),
"Proxy implementation not set"
);
vm.stopPrank();
}
}

0 comments on commit f995798

Please sign in to comment.