Add View Lock Wallet Transfers button to bid page.

This commit is contained in:
tecnovert
2021-09-05 17:36:27 +02:00
parent e69409514c
commit 4475e5b643
7 changed files with 49 additions and 5 deletions

View File

@@ -135,6 +135,6 @@ class BaseApp:
raise ValueError('CLI error ' + str(out[1]))
return out[0].decode('utf-8').strip()
def is_transient_error(ex):
str_error = str(ex).tolower()
def is_transient_error(self, ex):
str_error = str(ex).lower()
return 'read timed out' in str_error or 'no connection to daemon' in str_error