diff --git a/yarn-project/circuits.js/src/rollup/rollup_wasm_wrapper.ts b/yarn-project/circuits.js/src/rollup/rollup_wasm_wrapper.ts index 95e5455ebae8..429d34bb666f 100644 --- a/yarn-project/circuits.js/src/rollup/rollup_wasm_wrapper.ts +++ b/yarn-project/circuits.js/src/rollup/rollup_wasm_wrapper.ts @@ -1,4 +1,4 @@ -import { BaseOrMergeRollupPublicInputs, BaseRollupInputs, RootRollupInputs, RootRollupPublicInputs } from '../index.js'; +import { BaseOrMergeRollupPublicInputs, BaseRollupInputs } from '../index.js'; import { callWasm } from '../utils/call_wasm.js'; import { CircuitsWasm } from '../wasm/circuits_wasm.js'; diff --git a/yarn-project/circuits.js/src/structs/rollup/root_rollup.ts b/yarn-project/circuits.js/src/structs/rollup/root_rollup.ts index dcceb101f79f..2c174a83fa76 100644 --- a/yarn-project/circuits.js/src/structs/rollup/root_rollup.ts +++ b/yarn-project/circuits.js/src/structs/rollup/root_rollup.ts @@ -6,7 +6,7 @@ import { L1_TO_L2_MSG_SUBTREE_SIBLING_PATH_LENGTH, NUMBER_OF_L1_L2_MESSAGES_PER_ROLLUP, } from '../../cbind/constants.gen.js'; -import { FieldsOf, assertMemberLength } from '../../utils/jsUtils.js'; +import { FieldsOf } from '../../utils/jsUtils.js'; import { serializeToBuffer } from '../../utils/serialize.js'; import { AggregationObject } from '../aggregation_object.js'; import { GlobalVariables } from '../global_variables.js';