coins: Add 'daemon is busy' to transient errors list.

This commit is contained in:
tecnovert
2021-11-12 12:06:28 +02:00
parent d2b05fd57e
commit 0f8ed24217

View File

@@ -266,4 +266,6 @@ class CoinInterface:
return True return True
if 'invalid unlocked_balance' in str_error: if 'invalid unlocked_balance' in str_error:
return True return True
if 'daemon is busy' in str_error:
return True
return False return False