Skip to content

Commit

Permalink
style: fix eslint errors
Browse files Browse the repository at this point in the history
Former-commit-id: 0a821d8
  • Loading branch information
cedoor committed Sep 19, 2022
1 parent 39a7e32 commit 0c9c0c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/contracts/scripts/verify-contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ async function main() {

if (deployedContracts) {
await run("verify:verify", {
address: deployedContracts["Semaphore"],
address: deployedContracts.Semaphore,
constructorArguments: [verifiersToSolidityArgument(deployedContracts)]
})

await run("verify:verify", {
address: deployedContracts["IncrementalBinaryTree"]
address: deployedContracts.IncrementalBinaryTree
})
}
}
Expand Down

0 comments on commit 0c9c0c9

Please sign in to comment.