Merge pull request #697 from cypherstack/eth_ui_bug_fix

eth failed tx bug fix
This commit is contained in:
julian-CStack 2023-10-31 09:19:37 -06:00 committed by GitHub
commit b729ff32cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;