Skip to content

Commit

Permalink
Merge pull request #223 from JacksonRGB/fix-variable-name
Browse files Browse the repository at this point in the history
fix: wrong variable name in verify script
  • Loading branch information
invocamanman committed Mar 26, 2024
2 parents 8222986 + a4a678e commit a38e68b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions deployment/v2/verifyContracts.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async function main() {
[timelockAdminAddress],
[timelockAdminAddress],
timelockAdminAddress,
deployOutputParameters.polygonRollupManager,
deployOutputParameters.polygonRollupManagerAddress,
],
},
);
Expand All @@ -81,7 +81,7 @@ async function main() {
await hre.run(
'verify:verify',
{
address: deployOutputParameters.polygonRollupManager,
address: deployOutputParameters.polygonRollupManagerAddress,
constructorArguments: [
deployOutputParameters.polygonZkEVMGlobalExitRootAddress,
deployOutputParameters.polTokenAddress,
Expand All @@ -100,7 +100,7 @@ async function main() {
{
address: deployOutputParameters.polygonZkEVMGlobalExitRootAddress,
constructorArguments: [
deployOutputParameters.polygonRollupManager,
deployOutputParameters.polygonRollupManagerAddress,
deployOutputParameters.polygonZkEVMBridgeAddress,
],
},
Expand Down Expand Up @@ -179,7 +179,7 @@ async function main() {
deployOutputParameters.polygonZkEVMGlobalExitRootAddress,
deployOutputParameters.polTokenAddress,
deployOutputParameters.polygonZkEVMBridgeAddress,
deployOutputParameters.polygonRollupManager,
deployOutputParameters.polygonRollupManagerAddress,
],
},
);
Expand All @@ -197,7 +197,7 @@ async function main() {
deployOutputParameters.polygonZkEVMGlobalExitRootAddress,
deployOutputParameters.polTokenAddress,
deployOutputParameters.polygonZkEVMBridgeAddress,
deployOutputParameters.polygonRollupManager,
deployOutputParameters.polygonRollupManagerAddress,
],
},
);
Expand Down

0 comments on commit a38e68b

Please sign in to comment.