Skip to content

Commit

Permalink
2011 - bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanmon committed Sep 5, 2023
1 parent efa6c24 commit 1a6f535
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions yarn-project/aztec-rpc/src/kernel_prover/kernel_prover.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import {
makeEmptyProof,
makeTuple,
} from '@aztec/circuits.js';
import { makeEmptyReadRequestMembershipWitness } from '@aztec/circuits.js/factories';
import { Tuple, assertLength } from '@aztec/foundation/serialize';

import { KernelProofCreator, ProofCreator, ProofOutput, ProofOutputFinal } from './proof_creator.js';
Expand Down Expand Up @@ -217,7 +216,7 @@ export class KernelProver {
VerificationKey.fromBuffer(vk),
functionLeafMembershipWitness,
contractLeafMembershipWitness,
makeTuple(MAX_READ_REQUESTS_PER_CALL, makeEmptyReadRequestMembershipWitness),
makeTuple(MAX_READ_REQUESTS_PER_CALL, i => readRequestMembershipWitnesses[i], 0),
portalContractAddress.toField(),
acirHash,
);
Expand Down

0 comments on commit 1a6f535

Please sign in to comment.