Skip to content

Commit 73420ea

Browse files
committed
fix: drop unused NESTED_RECURSIVE_PROOF_LENGTH imports orphaned by the parity method merge
Deleting getRootParityProof removed the last uses of NESTED_RECURSIVE_PROOF_LENGTH in mock_prover.ts and broker_prover_facade.ts; @typescript-eslint/no-unused-vars is error-level so yarn lint would fail. Also corrects two 'base parity' JSDoc lines to 'inbox parity'.
1 parent 0de159c commit 73420ea

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

yarn-project/noir-protocol-circuits-types/src/execution/server.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ import type { DecodedInputs } from '../utils/decoded_inputs.js';
7676
export { mapAvmCircuitPublicInputsToNoir } from '../conversion/server.js';
7777

7878
/**
79-
* Converts the inputs of the base parity circuit into a witness map.
80-
* @param inputs - The base parity inputs.
79+
* Converts the inputs of the inbox parity circuit into a witness map.
80+
* @param inputs - The inbox parity inputs.
8181
* @returns The witness map
8282
*/
8383
export function convertInboxParityPrivateInputsToWitnessMap(
@@ -472,8 +472,8 @@ export function convertRootRollupOutputsFromWitnessMap(outputs: WitnessMap, simu
472472
}
473473

474474
/**
475-
* Converts the outputs of the base parity circuit from a witness map.
476-
* @param outputs - The base parity outputs as a witness map.
475+
* Converts the outputs of the inbox parity circuit from a witness map.
476+
* @param outputs - The inbox parity outputs as a witness map.
477477
* @returns The public inputs.
478478
*/
479479
export function convertInboxParityOutputsFromWitnessMap(

yarn-project/prover-client/src/proving_broker/broker_prover_facade.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import type {
22
AVM_V2_PROOF_LENGTH_IN_FIELDS,
3-
NESTED_RECURSIVE_PROOF_LENGTH,
43
NESTED_RECURSIVE_ROLLUP_HONK_PROOF_LENGTH,
54
RECURSIVE_PROOF_LENGTH,
65
} from '@aztec/constants';

yarn-project/prover-client/src/test/mock_prover.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import {
22
AVM_V2_PROOF_LENGTH_IN_FIELDS,
3-
NESTED_RECURSIVE_PROOF_LENGTH,
43
NESTED_RECURSIVE_ROLLUP_HONK_PROOF_LENGTH,
54
RECURSIVE_PROOF_LENGTH,
65
} from '@aztec/constants';

0 commit comments

Comments
 (0)