Merge pull request #4897 from ethereum-optimism/feat/remove-logs

proxyd: Remove logging
This commit is contained in:
Matthew Slipper 2023-02-15 10:11:05 -07:00 committed by GitHub
commit 2427bfeadf

@ -251,7 +251,6 @@ func (s *Server) HandleRPC(w http.ResponseWriter, r *http.Request) {
isLimited := func(method string) bool { isLimited := func(method string) bool {
isGloballyLimitedMethod := s.isGlobalLimit(method) isGloballyLimitedMethod := s.isGlobalLimit(method)
fmt.Println(method, isGloballyLimitedMethod)
if !isGloballyLimitedMethod && (isUnlimitedOrigin || isUnlimitedUserAgent) { if !isGloballyLimitedMethod && (isUnlimitedOrigin || isUnlimitedUserAgent) {
return false return false
} }