From 9e105956e2f44b05051f4939e1b1b2df0fc58a92 Mon Sep 17 00:00:00 2001 From: Diego Salazar <diego@cypherstack.com> Date: Sat, 28 Oct 2023 19:59:51 -0600 Subject: [PATCH 1/2] Bumped version (v1.8.1, build 192) --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 561d4ce5e..f72c6b9be 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -11,7 +11,7 @@ description: Stack Wallet # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 1.8.0+191 +version: 1.8.1+192 environment: sdk: ">=3.0.2 <4.0.0" From c4073edb0e935647b648f25454da4efbd4f0318f Mon Sep 17 00:00:00 2001 From: julian <julian@cypherstack.com> Date: Tue, 31 Oct 2023 09:17:49 -0600 Subject: [PATCH 2/2] eth failed tx bug fix --- lib/services/coins/ethereum/ethereum_wallet.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/services/coins/ethereum/ethereum_wallet.dart b/lib/services/coins/ethereum/ethereum_wallet.dart index 367011c51..fc9de7bc7 100644 --- a/lib/services/coins/ethereum/ethereum_wallet.dart +++ b/lib/services/coins/ethereum/ethereum_wallet.dart @@ -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;