Skip to content

Commit

Permalink
Add floor
Browse files Browse the repository at this point in the history
  • Loading branch information
ytham committed Dec 25, 2023
1 parent 6859dfe commit c39b112
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion circuit/js/src/scaffold.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export abstract class AxiomBaseCircuitScaffold<T> extends BaseCircuitScaffold {
this.provider,
).run(this.f, inputs, this.inputSchema, this.results);
this.timeEnd("Witness generation");
this.resultLen = Number(numUserInstances / 2);
this.resultLen = Math.floor(numUserInstances / 2);
this.dataQuery = dataQuery;
}

Expand Down

0 comments on commit c39b112

Please sign in to comment.