From c71272b0ca0bc9fc2139a727371cbb70d5354c91 Mon Sep 17 00:00:00 2001 From: OmarHatem Date: Fri, 15 Mar 2024 14:47:44 +0200 Subject: [PATCH] Ignore reporting network issues --- cw_monero/lib/monero_wallet.dart | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/cw_monero/lib/monero_wallet.dart b/cw_monero/lib/monero_wallet.dart index 5644f6f2e..d00a54c8f 100644 --- a/cw_monero/lib/monero_wallet.dart +++ b/cw_monero/lib/monero_wallet.dart @@ -574,13 +574,7 @@ abstract class MoneroWalletBase int height = 0; try { height = _getHeightByDate(walletInfo.date); - } catch (e, s) { - onError?.call(FlutterErrorDetails( - exception: e, - stack: s, - library: this.runtimeType.toString(), - )); - } + } catch (_) {} monero_wallet.setRecoveringFromSeed(isRecovery: true); monero_wallet.setRefreshFromBlockHeight(height: height);