Add 'timed out' to list of transient errors.

This commit is contained in:
tecnovert 2023-12-19 12:58:24 +02:00
parent 3d3fcbde0b
commit 5bec1c31da
No known key found for this signature in database
GPG key ID: 8ED6D8750C4E3F93

View file

@ -464,4 +464,6 @@ class CoinInterface:
return True
if 'daemon is busy' in str_error:
return True
if 'timed out' in str_error:
+ return True
return False