Add request-sent to transient errors list.

This commit is contained in:
tecnovert 2024-02-06 23:02:24 +02:00
parent 14577f7741
commit 7c0ea36e37

View file

@ -467,4 +467,6 @@ class CoinInterface:
return True
if 'timed out' in str_error:
return True
if 'request-sent' in str_error:
return True
return False