Skip to content

Commit

Permalink
fixed an autominting bug. Update to this version and it transactions …
Browse files Browse the repository at this point in the history
…should show up correctly as received once they are fully minted, if not go into settings and clear transaction cache and it will work.
  • Loading branch information
marco committed Mar 2, 2022
1 parent fd66bac commit 391c7e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/services/coins/firo/firo_wallet.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1584,7 +1584,7 @@ class FiroWallet extends CoinServiceAPI {
);

final vouts = tx["vout"];
if (vouts != null && vouts.length <= outputIndex + 1) {
if (vouts != null && outputIndex < vouts.length) {
final address = vouts[outputIndex]["scriptPubKey"]["addresses"][0];
if (address != null) {
addressesToDerive.add(address);
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description: Paymint client
# 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.2.4+13
version: 1.2.5+15

environment:
sdk: ">=2.2.2 <3.0.0"
Expand Down

0 comments on commit 391c7e0

Please sign in to comment.