File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -337,12 +337,15 @@ mod tests {
337
337
meta. advice_column ( ) ,
338
338
] ;
339
339
340
- let constants = meta. fixed_column ( ) ;
340
+ // TODO: Replace with public inputs API
341
+ let constants_1 = meta. fixed_column ( ) ;
342
+ let constants_2 = meta. fixed_column ( ) ;
341
343
let perm = meta. permutation (
342
344
& advices
343
345
. iter ( )
344
346
. map ( |advice| ( * advice) . into ( ) )
345
- . chain ( Some ( constants. into ( ) ) )
347
+ . chain ( Some ( constants_1. into ( ) ) )
348
+ . chain ( Some ( constants_2. into ( ) ) )
346
349
. collect :: < Vec < _ > > ( ) ,
347
350
) ;
348
351
@@ -359,14 +362,14 @@ mod tests {
359
362
meta,
360
363
advices[ ..5 ] . try_into ( ) . unwrap ( ) ,
361
364
lookup,
362
- constants ,
365
+ constants_1 ,
363
366
perm. clone ( ) ,
364
367
) ;
365
368
let config2 = SinsemillaChip :: configure (
366
369
meta,
367
370
advices[ 5 ..] . try_into ( ) . unwrap ( ) ,
368
371
lookup,
369
- constants ,
372
+ constants_2 ,
370
373
perm,
371
374
) ;
372
375
( ecc_config, config1, config2)
You can’t perform that action at this time.
0 commit comments