We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 82a893d + 2505a96 commit e954a9eCopy full SHA for e954a9e
l1-contracts/deploy-scripts/ctm/DeployCTMUtils.s.sol
@@ -322,7 +322,11 @@ abstract contract DeployCTMUtils is DeployUtils {
322
return type(EraTestnetVerifier).creationCode;
323
}
324
} else {
325
- return type(EraDualVerifier).creationCode;
+ if (config.isZKsyncOS) {
326
+ return type(ZKsyncOSDualVerifier).creationCode;
327
+ } else {
328
+ return type(EraDualVerifier).creationCode;
329
+ }
330
331
} else if (compareStrings(contractName, "EraVerifierFflonk")) {
332
return type(EraVerifierFflonk).creationCode;
0 commit comments