File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ class TransactionFilterProxy : public QSortFilterProxyModel
2424 static const QDateTime MAX_DATE;
2525 /* * Type filter bit field (all types) */
2626 static const quint32 ALL_TYPES = 0xFFFFFFFF ;
27- /* * Type filter bit field (all types but Obfuscation-SPAM ... enum 0-13 are common) */
28- static const quint32 COMMON_TYPES = 0x000003FFF ;
27+ /* * Type filter bit field (all types but Obfuscation-SPAM ... enum 0-14 are common) */
28+ static const quint32 COMMON_TYPES = 0x0005FFFF ;
2929
3030 static quint32 TYPE (int type) { return 1 << type; }
3131
Original file line number Diff line number Diff line change @@ -119,6 +119,7 @@ QList<TransactionRecord> TransactionRecord::decomposeTransaction(const CWallet*
119119 isminetype mine = wallet->IsMine (txout);
120120 if (mine) {
121121 TransactionRecord sub (hash, nTime);
122+ sub.involvesWatchAddress = mine & ISMINE_WATCH_ONLY;
122123 if (fZSpendFromMe ) {
123124 sub.type = TransactionRecord::ZerocoinSpend_FromMe;
124125 } else {
@@ -139,6 +140,7 @@ QList<TransactionRecord> TransactionRecord::decomposeTransaction(const CWallet*
139140
140141 // zerocoin spend that was sent to someone else
141142 TransactionRecord sub (hash, nTime);
143+ sub.involvesWatchAddress = mine & ISMINE_WATCH_ONLY;
142144 sub.debit = -txout.nValue ;
143145 sub.type = TransactionRecord::ZerocoinSpend;
144146 sub.address = mapValue[" zerocoinspend" ];
You can’t perform that action at this time.
0 commit comments