File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/lib/crypto/kimchi_bindings/js/native/native-overrides Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ var caml_fp_srs_b_poly_commitment = function (srs, chals) {
7373 console . log ( "native caml_fp_srs_b_poly_commitment" ) ;
7474 var res = plonk_wasm . caml_fp_srs_b_poly_commitment (
7575 srs ,
76- tsRustConversionNative . fieldsToRustFlat ( chals )
76+ tsRustConversionNative . fp . vectorToRust ( chals )
7777 ) ;
7878 return tsRustConversionNative . fp . polyCommFromRust ( res ) ;
7979} ;
@@ -171,7 +171,7 @@ var caml_fq_srs_b_poly_commitment = function (srs, chals) {
171171 console . log ( "native caml_fq_srs_b_poly_commitment" ) ;
172172 var res = plonk_wasm . caml_fq_srs_b_poly_commitment (
173173 srs ,
174- tsRustConversionNative . fieldsToRustFlat ( chals )
174+ tsRustConversionNative . fq . vectorToRust ( chals )
175175 ) ;
176176 return tsRustConversionNative . fq . polyCommFromRust ( res ) ;
177177} ;
You can’t perform that action at this time.
0 commit comments