We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9604f13 commit ba89365Copy full SHA for ba89365
lib/wallets/wallet/impl/ethereum_wallet.dart
@@ -338,7 +338,14 @@ class EthereumWallet extends Bip39Wallet with PrivateKeyInterface {
338
final Amount txFee = element.gasCost;
339
final transactionAmount = element.value;
340
final addressFrom = checksumEthereumAddress(element.from);
341
- final addressTo = checksumEthereumAddress(element.to);
+ final String addressTo;
342
+ try {
343
+ addressTo = checksumEthereumAddress(element.to);
344
+ } catch (e, s) {
345
+ Logging.instance.w("Ignoring eth transaction:\n$e\n$s");
346
+ // temp "fix"
347
+ continue;
348
+ }
349
350
bool isIncoming;
351
bool txFailed = false;
0 commit comments