fix: add "support for coin removed" to exception handler ignored list (#3182)
cyan committed
Apr 15, 2026 at 00:34 UTC
162e0a5300bae7814a46aba24f664b0c970299b9
2 files changed
+4
-2
cw_wownero/lib/wownero_wallet_service.dart
+1
-1
@@ -138,7 +138,7 @@ class WowneroWalletService extends WalletService<
138
}
139
140
wallet = WowneroWallet(walletInfo: walletInfo, derivationInfo: await walletInfo.getDerivationInfo(), unspentCoinsInfo: unspentCoinsInfoSource, password: password);
141
- throw Exception(wallet.seed);
141
+ throw Exception("support for coin removed, your seedphrase: ${wallet.seed}");
142
143
final isValid = wallet.walletAddresses.validate();
144
lib/utils/exception_handler.dart
+3
-1
@@ -302,7 +302,9 @@ class ExceptionHandler {
302
"reown_core/relay_client/websocket/websocket_handler.dart",
303
"Image upload failed due to loss of GPU access",
304
"transport error",
305
- "SdkError.sparkError(field0: Operator RPC error: Connection error: status: Unavailable, message: \"dns error\", details: []"
305
+ "SdkError.sparkError(field0: Operator RPC error: Connection error: status: Unavailable, message: \"dns error\", details: []",
306
+
307
+ "support for coin removed, your seedphrase:"
308
];
309
310
static Future<void> _addDeviceInfo(File file) async {