From 7c0ea36e370b76d0833f75b6f83e440426224053 Mon Sep 17 00:00:00 2001 From: tecnovert Date: Tue, 6 Feb 2024 23:02:24 +0200 Subject: [PATCH] Add request-sent to transient errors list. --- basicswap/chainparams.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/basicswap/chainparams.py b/basicswap/chainparams.py index f68873f..59be4c8 100644 --- a/basicswap/chainparams.py +++ b/basicswap/chainparams.py @@ -467,4 +467,6 @@ class CoinInterface: return True if 'timed out' in str_error: return True + if 'request-sent' in str_error: + return True return False