Skip to content

Commit

Permalink
hack - only test fork on zora goerli for premint
Browse files Browse the repository at this point in the history
  • Loading branch information
oveddan committed Aug 23, 2023
1 parent f1d1aa9 commit 5461785
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/premint/ZoraCreator1155Preminter.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,10 @@ contract ZoraCreator1155PreminterTest is ForkDeploymentConfig, Test {
}

function testTheForkPremint(string memory chainName) private {
if (keccak256(abi.encodePacked(chainName)) != keccak256(abi.encodePacked("zora_goerli"))) {
return;
}

console.log("testing on fork: ", chainName);

// create and select the fork, which will be used for all subsequent calls
Expand Down

0 comments on commit 5461785

Please sign in to comment.