Skip to content

Commit f3413c9

Browse files
fixup
1 parent b275d16 commit f3413c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

prover/utils/csvtraces/csvtraces.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,15 +256,15 @@ func (c *CsvTrace) LenPadded() int {
256256
// WritesExplicit format value-provided columns into a csv file. Unlike [FmtCsv]
257257
// it does not need the columns to be registered as the assignmet of a wizard.
258258
// It is suitable for test-case generation.
259-
func WriteExplicit(w io.Writer, names []string, cols [][]field.Element) {
259+
func WriteExplicit(w io.Writer, names []string, cols [][]field.Element, inHex bool) {
260260

261261
fmt.Fprintf(w, "%v\n", strings.Join(names, ","))
262262

263263
for i := range cols[0] {
264264

265265
row := []string{}
266266
for j := range cols {
267-
row = append(row, fmtFieldElement(cols[j][i]))
267+
row = append(row, fmtFieldElement(inHex, cols[j][i]))
268268
}
269269

270270
fmt.Fprintf(w, "%v\n", strings.Join(row, ","))

0 commit comments

Comments
 (0)