In the tx list only process txs that are not anon

This commit is contained in:
likho 2024-03-18 17:49:11 +02:00
parent 75907ae650
commit c1b9ba085f

View file

@ -191,10 +191,9 @@ class ParticlWallet extends Bip39HDWallet
final List<String> addresses = [];
String valueStringSats = "0";
OutpointV2? outpoint;
final coinbase = map["coinbase"] as String?;
if (coinbase == null) {
final txType = map['type'] as String?;
if (coinbase == null && txType == null) {
// Not a coinbase (ie a typical input).
final txid = map["txid"] as String;
final vout = map["vout"] as int;