Skip to content

Commit

Permalink
Merge pull request #1224 from marekyggdrasil/main
Browse files Browse the repository at this point in the history
Fixed the Escrow smart contract example
  • Loading branch information
mitschabaude committed Nov 3, 2023
2 parents 1500523 + 8983d3e commit a891c4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/examples/zkapps/escrow/escrow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class Escrow extends SmartContract {
// add your deposit logic circuit here
// that will adjust the amount

const payerUpdate = AccountUpdate.create(user);
const payerUpdate = AccountUpdate.createSigned(user);
payerUpdate.send({ to: this.address, amount: UInt64.from(1000000) });
}

Expand Down

0 comments on commit a891c4b

Please sign in to comment.