Commit 78bd8690 authored by Adrian Sutton's avatar Adrian Sutton Committed by GitHub

Merge pull request #8182 from ethereum-optimism/jg/fetcher_fix

op-service: Fix fetcher for proxyd
parents 1a9f9b54 71db3871
......@@ -311,5 +311,6 @@ func unusableMethod(err error) bool {
return strings.Contains(errText, "unsupported method") || // alchemy -32600 message
strings.Contains(errText, "unknown method") ||
strings.Contains(errText, "invalid param") ||
strings.Contains(errText, "is not available")
strings.Contains(errText, "is not available") ||
strings.Contains(errText, "rpc method is not whitelisted") // proxyd -32001 error code
}
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