From d88f5728a4d3db398167cc56c292d775ab7d2237 Mon Sep 17 00:00:00 2001 From: nahuhh <50635951+nahuhh@users.noreply.github.com> Date: Wed, 25 Dec 2024 01:03:26 +0000 Subject: [PATCH] wownero: revert output distribution err --- basicswap/interface/xmr.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/basicswap/interface/xmr.py b/basicswap/interface/xmr.py index bf5c21f..8614822 100644 --- a/basicswap/interface/xmr.py +++ b/basicswap/interface/xmr.py @@ -77,9 +77,9 @@ class XMRInterface(CoinInterface): return 1604 def is_transient_error(self, ex) -> bool: - str_error: str = str(ex).lower() - if "failed to get output distribution" in str_error: - return True + # str_error: str = str(ex).lower() + # if "failed to get output distribution" in str_error: + # return True return super().is_transient_error(ex) def __init__(self, coin_settings, network, swap_client=None):