Skip to content

Commit

Permalink
remove ( ) from proto
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBger committed Aug 7, 2024
1 parent e6e3d02 commit ea29016
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ethfull/convo.go
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ func (c *Convo) Update(msg loop.Msg) loop.Cmd {
{{- range .events }}
message {{.Proto.MessageName}} {{.Proto.OutputModuleFieldName}} {
{{- range $idx, $field := .Proto.Fields }}
{{$field.Type}} ({{$field.Name}}) = {{ len (printf "a%*s" $idx "") }};
{{$field.Type}} {{$field.Name}} = {{ len (printf "a%*s" $idx "") }};
{{- end}}
}
{{- end}}
Expand All @@ -558,7 +558,7 @@ message {{.Proto.MessageName}} {{.Proto.OutputModuleFieldName}} {
{{- range .calls }}
message {{.Proto.MessageName}} {{.Proto.OutputModuleFieldName}} {
{{- range $idx, $field := .Proto.Fields }}
{{$field.Type}} ({{$field.Name}}) = {{ len (printf "a%*s" $idx "") }};
{{$field.Type}} {{$field.Name}} = {{ len (printf "a%*s" $idx "") }};
{{- end}}
}
{{- end}}
Expand Down

0 comments on commit ea29016

Please sign in to comment.