mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-02-02 03:06:29 +00:00
Revert "In the tx list only process txs that are not anon"
This reverts commit c1b9ba085f
.
This commit is contained in:
parent
c1b9ba085f
commit
11136d3d14
1 changed files with 3 additions and 2 deletions
|
@ -191,9 +191,10 @@ class ParticlWallet extends Bip39HDWallet
|
||||||
final List<String> addresses = [];
|
final List<String> addresses = [];
|
||||||
String valueStringSats = "0";
|
String valueStringSats = "0";
|
||||||
OutpointV2? outpoint;
|
OutpointV2? outpoint;
|
||||||
|
|
||||||
final coinbase = map["coinbase"] as String?;
|
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).
|
// Not a coinbase (ie a typical input).
|
||||||
final txid = map["txid"] as String;
|
final txid = map["txid"] as String;
|
||||||
final vout = map["vout"] as int;
|
final vout = map["vout"] as int;
|
||||||
|
|
Loading…
Reference in a new issue