mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-11 05:04:35 +00:00
eth failed tx bug fix
This commit is contained in:
parent
11fe9f19b5
commit
405e432d12
1 changed files with 1 additions and 1 deletions
|
@ -1069,7 +1069,7 @@ class EthereumWallet extends CoinServiceAPI with WalletCache, WalletDB {
|
||||||
bool isIncoming;
|
bool isIncoming;
|
||||||
bool txFailed = false;
|
bool txFailed = false;
|
||||||
if (checksumEthereumAddress(element.from) == thisAddress) {
|
if (checksumEthereumAddress(element.from) == thisAddress) {
|
||||||
if (element.isError != 0) {
|
if (element.isError) {
|
||||||
txFailed = true;
|
txFailed = true;
|
||||||
}
|
}
|
||||||
isIncoming = false;
|
isIncoming = false;
|
||||||
|
|
Loading…
Reference in a new issue