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 817b6ea commit 0830116Copy full SHA for 0830116
cmd/convert/solc_sig.go
@@ -54,7 +54,7 @@ func getSignatureFromInterface(_interface string) (_4BytesSig string, hash commo
54
55
fmt.Println(_interface)
56
57
- if !regexp.MustCompile(`^\w+\s*\(.+\)$`).MatchString(_interface) {
+ if !regexp.MustCompile(`^\w+\s*\(.*\)$`).MatchString(_interface) {
58
err = fmt.Errorf("invalid EVM method/event interface, require format: `methodName(...)`")
59
return
60
}
0 commit comments