Skip to content

Commit

Permalink
feat(besu): remove setter methods in generated traces
Browse files Browse the repository at this point in the history
  • Loading branch information
delehef committed Sep 22, 2023
1 parent 39ea5b4 commit b1fa879
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions src/exporters/besu_trace_columns.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,28 +71,6 @@ public int size() {
{{/unless}}
{{/each}}

{{#each columns}}
public TraceBuilder set{{ this.updater }}At(final {{ this.tupe }} b, int i) {
{{ this.register }}.set(i, b);

return this;
}
{{#unless @last}}

{{/unless}}
{{/each}}

{{#each columns}}
public TraceBuilder set{{ this.updater }}Relative(final {{ this.tupe }} b, int i) {
{{ this.register }}.set({{ this.register }}.size() - 1 - i, b);

return this;
}
{{#unless @last}}

{{/unless}}
{{/each}}

public TraceBuilder validateRow() {
{{#each registers}}
if (!filled.get({{ this.id }})) {
Expand Down

0 comments on commit b1fa879

Please sign in to comment.