mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 03:49:22 +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 txFailed = false;
|
||||
if (checksumEthereumAddress(element.from) == thisAddress) {
|
||||
if (element.isError != 0) {
|
||||
if (element.isError) {
|
||||
txFailed = true;
|
||||
}
|
||||
isIncoming = false;
|
||||
|
|
Loading…
Reference in a new issue