Commit e0f85896 authored by Matthew Slipper's avatar Matthew Slipper Committed by GitHub

Allow cheatcodes on DeploySuperchain.s.sol (#11802)

We need to add these calls otherwise calling `DeploySuperchain.s.sol` as a script with input/output files fails.
parent c27aead5
......@@ -381,6 +381,8 @@ contract DeploySuperchain is Script {
(dsi_, dso_) = getIOContracts();
vm.etch(address(dsi_), type(DeploySuperchainInput).runtimeCode);
vm.etch(address(dso_), type(DeploySuperchainOutput).runtimeCode);
vm.allowCheatcodes(address(dsi_));
vm.allowCheatcodes(address(dso_));
}
function getIOContracts() public view returns (DeploySuperchainInput dsi_, DeploySuperchainOutput dso_) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment