Skip to content

Commit

Permalink
🧹 Update bootstrap helpers to be internal
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyrharper committed Oct 24, 2023
1 parent c499e48 commit e4fc4f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/utils/Bootstrap.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ import {Test} from "lib/forge-std/src/Test.sol";
contract Bootstrap is Test {
using console2 for *;

Counter public counter;
Counter internal counter;

function initializeOptimismGoerli() public {
function initializeOptimismGoerli() internal {
BootstrapOptimismGoerli bootstrap = new BootstrapOptimismGoerli();
(address counterAddress) = bootstrap.init();

counter = Counter(counterAddress);
}

function initializeOptimism() public {
function initializeOptimism() internal {
BootstrapOptimismGoerli bootstrap = new BootstrapOptimismGoerli();
(address counterAddress) = bootstrap.init();

Expand Down

0 comments on commit e4fc4f0

Please sign in to comment.