From 5bec1c31da80d292dfa9fe5ef7f4b287cebfdf47 Mon Sep 17 00:00:00 2001 From: tecnovert Date: Tue, 19 Dec 2023 12:58:24 +0200 Subject: [PATCH] Add 'timed out' to list of transient errors. --- basicswap/chainparams.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/basicswap/chainparams.py b/basicswap/chainparams.py index 99d7e69..c95c74b 100644 --- a/basicswap/chainparams.py +++ b/basicswap/chainparams.py @@ -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