mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-03-26 00:58:50 +00:00
In the tx list only process txs that are not anon
This commit is contained in:
parent
75907ae650
commit
c1b9ba085f
1 changed files with 2 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue