eth failed tx bug fix

This commit is contained in:
julian 2023-10-31 09:17:49 -06:00
parent 9e105956e2
commit c4073edb0e

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;