Revert "In the tx list only process txs that are not anon"

This reverts commit c1b9ba085f.
This commit is contained in:
likho 2024-03-18 17:50:04 +02:00
parent c1b9ba085f
commit 11136d3d14

View file

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