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 b935000 commit 2aeba67Copy full SHA for 2aeba67
cmd/convert/solc_sig.go
@@ -59,7 +59,7 @@ func getSignatureFromInterface(_interface string) (_4BytesSig string, hash commo
59
utils.PrintlnStdErr("INF: Interface")
60
fmt.Println(_interface)
61
62
- if !regexp.MustCompile(`^\w+\s*\(.+\)$`).MatchString(_interface) {
+ if !regexp.MustCompile(`^\w+\s*\(.*\)$`).MatchString(_interface) {
63
err = fmt.Errorf("invalid EVM method/event interface, require format: `methodName(...)`")
64
return
65
}
0 commit comments