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
No known key found for this signature in database
GPG key ID: 8ED6D8750C4E3F93

View file

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