Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(prover): Use all 1.5.0 groups for nodes #1851

Merged
merged 2 commits into from
May 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions prover/prover_fri_utils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,7 @@ pub fn get_all_circuit_id_round_tuples_for(
}

fn get_all_circuit_id_round_tuples_for_node_aggregation() -> Vec<CircuitIdRoundTuple> {
((ZkSyncRecursionLayerStorageType::LeafLayerCircuitForMainVM as u8)
..=(ZkSyncRecursionLayerStorageType::LeafLayerCircuitForL1MessagesHasher as u8))
ZkSyncRecursionLayerStorageType::leafs_as_iter_u8()
.map(|circuit_id| CircuitIdRoundTuple {
circuit_id,
aggregation_round: AggregationRound::NodeAggregation as u8,
Expand All @@ -149,7 +148,7 @@ mod tests {
let res = get_all_circuit_id_round_tuples_for(ids);
let expected_circuit_ids: Vec<u8> =
((ZkSyncRecursionLayerStorageType::LeafLayerCircuitForMainVM as u8)
..=(ZkSyncRecursionLayerStorageType::LeafLayerCircuitForL1MessagesHasher as u8))
..=(ZkSyncRecursionLayerStorageType::LeafLayerCircuitForEIP4844Repack as u8))
.collect();
let expected = expected_circuit_ids
.into_iter()
Expand Down
Loading