Skip to content

Commit

Permalink
fix: add platform transfer to "most common" filter on transactions tab
Browse files Browse the repository at this point in the history
  • Loading branch information
knst committed Dec 3, 2024
1 parent d033a3a commit 36893e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/transactionfilterproxy.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class TransactionFilterProxy : public QSortFilterProxyModel
/** Type filter bit field (all types) */
static const quint32 ALL_TYPES = 0xFFFFFFFF;
/** Type filter bit field (all types but Darksend-SPAM) */
static const quint32 COMMON_TYPES = 0x107f;
static const quint32 COMMON_TYPES = 0x307f;

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

Expand Down
1 change: 1 addition & 0 deletions src/qt/transactionrecord.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ class TransactionStatus
class TransactionRecord
{
public:
// Update COMMON_TYPES in TransactionFilterProxyWhen when adding a new type
enum Type
{
Other,
Expand Down

0 comments on commit 36893e4

Please sign in to comment.