Commit 7b2cb349 authored by Mark Tyneway's avatar Mark Tyneway

contracts-bedrock: virtual setup in deploy script

Makes the `setUp` function virtual in the deploy script.
Part of https://github.com/ethereum-optimism/optimism/pull/7928
parent a809274c
...@@ -58,7 +58,7 @@ contract Deploy is Deployer { ...@@ -58,7 +58,7 @@ contract Deploy is Deployer {
name_ = "Deploy"; name_ = "Deploy";
} }
function setUp() public override { function setUp() public virtual override {
super.setUp(); super.setUp();
string memory path = string.concat(vm.projectRoot(), "/deploy-config/", deploymentContext, ".json"); string memory path = string.concat(vm.projectRoot(), "/deploy-config/", deploymentContext, ".json");
......
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