eth failed tx bug fix

This commit is contained in:
julian 2023-10-31 09:17:49 -06:00
parent 11fe9f19b5
commit 405e432d12

View file

@ -1069,7 +1069,7 @@ class EthereumWallet extends CoinServiceAPI with WalletCache, WalletDB {
bool isIncoming;
bool txFailed = false;
if (checksumEthereumAddress(element.from) == thisAddress) {
if (element.isError != 0) {
if (element.isError) {
txFailed = true;
}
isIncoming = false;