Commit 405cb9b6 authored by Matthew Slipper's avatar Matthew Slipper Committed by GitHub

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

proxyd: Remove logging
parents c7d38d58 6b3cf207
---
'@eth-optimism/proxyd': patch
---
Remove useless logging
...@@ -251,7 +251,6 @@ func (s *Server) HandleRPC(w http.ResponseWriter, r *http.Request) { ...@@ -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
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment