Skip to content

Commit 032c644

Browse files
committed
syntax
1 parent 37ed309 commit 032c644

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

recursive_verification/scripts/run_recursion.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,7 @@ async function main() {
4040
await manager.send({ from: AztecAddress.ZERO, fee: { paymentMethod: sponsoredPaymentMethod } }).deployed()
4141
const accounts = await testWallet.getAccounts();
4242

43-
const valueNotEqual = await Contract.deploy(testWallet, ValueNotEqualContractArtifact, [
44-
10, accounts[0].item
45-
], 'initialize').send({ from: accounts[0].item, fee: { paymentMethod: sponsoredPaymentMethod } }).deployed() as ValueNotEqualContract
43+
const valueNotEqual = await ValueNotEqualContract.deploy(testWallet, 10, accounts[0].item).send({ from: accounts[0].item, fee: { paymentMethod: sponsoredPaymentMethod } }).deployed()
4644

4745
const tx = await valueNotEqual.methods.increment(accounts[0].item, data.vkAsFields as unknown as FieldLike[], data.proofAsFields as unknown as FieldLike[], data.publicInputs as unknown as FieldLike[]).send({ from: accounts[0].item, fee: { paymentMethod: sponsoredPaymentMethod } }).wait()
4846

0 commit comments

Comments
 (0)