Skip to content

Commit 1849d45

Browse files
fix bug: add quotes around sw_init args
1 parent a79827d commit 1849d45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/ecc/circuit/src/ecc_extension.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ impl EccExtension {
136136
let supported_sw_curves = self
137137
.supported_sw_curves
138138
.iter()
139-
.map(|curve_config| curve_config.struct_name.to_string())
139+
.map(|curve_config| format!("\"{}\"", curve_config.struct_name))
140140
.collect::<Vec<String>>()
141141
.join(", ");
142142

0 commit comments

Comments
 (0)