Skip to content

Commit

Permalink
Merge pull request #418 from o1-labs/zkapp-compilation-extra-arg-fix
Browse files Browse the repository at this point in the history
Get rid of extra argument passed to zkApp compilation method.
  • Loading branch information
shimkiv authored Sep 15, 2022
2 parents 1223f2e + c84d69a commit f1a6b13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/artifacts/javascript/on-chain-state-mgmt-zkapp-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ deployButton.addEventListener('click', async () => {
logEvents('Deploying zkApp...', eventsContainer);

try {
const { verificationKey } = await HelloWorld.compile(zkAppAddress);
const { verificationKey } = await HelloWorld.compile();
const deploymentTransaction = await Mina.transaction(feePayer, () => {
if (!eventsContainer.innerHTML.includes('zkApp Deployed successfully')) {
AccountUpdate.fundNewAccount(feePayer);
Expand Down

0 comments on commit f1a6b13

Please sign in to comment.