mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-18 18:21:08 +00:00
Merge pull request #697 from cypherstack/eth_ui_bug_fix
eth failed tx bug fix
This commit is contained in:
commit
b729ff32cb
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