Skip to content

Commit 391c7e0

Browse files
author
marco
committed
fixed an autominting bug. Update to this version and it transactions should show up correctly as received once they are fully minted, if not go into settings and clear transaction cache and it will work.
1 parent fd66bac commit 391c7e0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/services/coins/firo/firo_wallet.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1584,7 +1584,7 @@ class FiroWallet extends CoinServiceAPI {
15841584
);
15851585

15861586
final vouts = tx["vout"];
1587-
if (vouts != null && vouts.length <= outputIndex + 1) {
1587+
if (vouts != null && outputIndex < vouts.length) {
15881588
final address = vouts[outputIndex]["scriptPubKey"]["addresses"][0];
15891589
if (address != null) {
15901590
addressesToDerive.add(address);

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description: Paymint client
1111
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
1212
# Read more about iOS versioning at
1313
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
14-
version: 1.2.4+13
14+
version: 1.2.5+15
1515

1616
environment:
1717
sdk: ">=2.2.2 <3.0.0"

0 commit comments

Comments
 (0)