We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 283e5c9 commit d7ada9cCopy full SHA for d7ada9c
interface.go
@@ -237,7 +237,7 @@ interface {{.Name}} {
237
238
// errors
239
{{- range .ABI.Errors}}
240
- error {{.Name}}({{- range $i, $error := .Inputs}}{{if $i}}, {{end}}{{.Type}}{{.Name}}{{- end}});
+ error {{.Name}}({{- range $i, $error := .Inputs}}{{if $i}}, {{end}}{{.Type}} {{.Name}}{{- end}});
241
{{- end}}
242
}
243
`
main.go
@@ -8,7 +8,7 @@ import (
8
"os"
9
)
10
11
-var VERSION string = "0.0.3"
+var VERSION string = "0.0.4"
12
13
func main() {
14
var interfaceName string
0 commit comments