Skip to content

Commit e954a9e

Browse files
Merge pull request matter-labs#1980 from matter-labs/add-zksyncos-dual-verifier
fix: ZKsyncOSDualVerifier as non-testnet verifier for ZKSyncOS
2 parents 82a893d + 2505a96 commit e954a9e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

l1-contracts/deploy-scripts/ctm/DeployCTMUtils.s.sol

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,11 @@ abstract contract DeployCTMUtils is DeployUtils {
322322
return type(EraTestnetVerifier).creationCode;
323323
}
324324
} else {
325-
return type(EraDualVerifier).creationCode;
325+
if (config.isZKsyncOS) {
326+
return type(ZKsyncOSDualVerifier).creationCode;
327+
} else {
328+
return type(EraDualVerifier).creationCode;
329+
}
326330
}
327331
} else if (compareStrings(contractName, "EraVerifierFflonk")) {
328332
return type(EraVerifierFflonk).creationCode;

0 commit comments

Comments
 (0)