Skip to content

Commit

Permalink
remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
pkieltyka committed Apr 26, 2024
1 parent 25d008f commit 2f6e828
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions ethcoder/events.go
Original file line number Diff line number Diff line change
Expand Up @@ -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, ","))
}

0 comments on commit 2f6e828

Please sign in to comment.