diff --git a/ethcoder/events.go b/ethcoder/events.go index 80082ff..6ea4e17 100644 --- a/ethcoder/events.go +++ b/ethcoder/events.go @@ -41,7 +41,5 @@ func parseEventSignature(event string) string { typs = append(typs, typ) } - x := fmt.Sprintf("%s(%s)", method, strings.Join(typs, ",")) - fmt.Println(x) - return x + return fmt.Sprintf("%s(%s)", method, strings.Join(typs, ",")) }