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

View File

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