feat: add infura error code to retry detection (#1921)
This commit is contained in:
parent
e5aa4518d7
commit
f886d379a4
|
@ -354,6 +354,11 @@ impl RetryPolicy<ClientError> for HttpRateLimitRetryPolicy {
|
|||
return true
|
||||
}
|
||||
|
||||
// This is an infura error code for `exceeded project rate limit`
|
||||
if *code == -32005 {
|
||||
return true
|
||||
}
|
||||
|
||||
// alternative alchemy error for specific IPs
|
||||
if *code == -32016 && message.contains("rate limit") {
|
||||
return true
|
||||
|
|
Loading…
Reference in New Issue