Commit 71db3871 authored by Joshua Gutow's avatar Joshua Gutow

op-service: Fix fetcher for proxyd

parent e0441341
......@@ -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