This repository was archived by the owner on Apr 18, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +15
-15
lines changed
aggregator/src/aggregation Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -52,21 +52,6 @@ impl AggregationConfig {
52
52
"For now we fix limb_bits = {BITS}, otherwise change code" ,
53
53
) ;
54
54
55
- // base field configuration for aggregation circuit
56
- let base_field_config = FpConfig :: configure (
57
- meta,
58
- params. strategy . clone ( ) ,
59
- & params. num_advice ,
60
- & params. num_lookup_advice ,
61
- params. num_fixed ,
62
- params. lookup_bits ,
63
- BITS ,
64
- LIMBS ,
65
- modulus :: < Fq > ( ) ,
66
- 0 ,
67
- params. degree as usize ,
68
- ) ;
69
-
70
55
// RLC configuration
71
56
let rlc_config = RlcConfig :: configure ( meta, challenges) ;
72
57
@@ -83,6 +68,21 @@ impl AggregationConfig {
83
68
KeccakCircuitConfig :: new ( meta, keccak_circuit_config_args)
84
69
} ;
85
70
71
+ // base field configuration for aggregation circuit
72
+ let base_field_config = FpConfig :: configure (
73
+ meta,
74
+ params. strategy . clone ( ) ,
75
+ & params. num_advice ,
76
+ & params. num_lookup_advice ,
77
+ params. num_fixed ,
78
+ params. lookup_bits ,
79
+ BITS ,
80
+ LIMBS ,
81
+ modulus :: < Fq > ( ) ,
82
+ 0 ,
83
+ params. degree as usize ,
84
+ ) ;
85
+
86
86
// The current code base is hardcoded for KeccakCircuit configured
87
87
// with 300 rows and 87 columns per hash call.
88
88
let columns = keccak_circuit_config. cell_manager . columns ( ) ;
You can’t perform that action at this time.
0 commit comments