Skip to content

Commit 36893e4

Browse files
committed
fix: add platform transfer to "most common" filter on transactions tab
1 parent d033a3a commit 36893e4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/qt/transactionfilterproxy.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class TransactionFilterProxy : public QSortFilterProxyModel
2323
/** Type filter bit field (all types) */
2424
static const quint32 ALL_TYPES = 0xFFFFFFFF;
2525
/** Type filter bit field (all types but Darksend-SPAM) */
26-
static const quint32 COMMON_TYPES = 0x107f;
26+
static const quint32 COMMON_TYPES = 0x307f;
2727

2828
static quint32 TYPE(int type) { return 1<<type; }
2929

src/qt/transactionrecord.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ class TransactionStatus
8282
class TransactionRecord
8383
{
8484
public:
85+
// Update COMMON_TYPES in TransactionFilterProxyWhen when adding a new type
8586
enum Type
8687
{
8788
Other,

0 commit comments

Comments
 (0)