From 2f6e828c0b36b8ef57617e9db313dd4540c393e1 Mon Sep 17 00:00:00 2001 From: Peter Kieltyka Date: Thu, 25 Apr 2024 20:14:20 -0400 Subject: [PATCH] remove print statement --- ethcoder/events.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ethcoder/events.go b/ethcoder/events.go index 80082ff5..6ea4e17e 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, ",")) }