fix: add platform transfer to "most common" filter on transactions tab

This commit is contained in:
Konstantin Akimov 2024-12-03 15:08:06 +07:00
parent d033a3ae06
commit 36893e4ba4
No known key found for this signature in database
GPG Key ID: 2176C4A5D01EA524
2 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,7 @@ public:
/** 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; }

View File

@ -82,6 +82,7 @@ public:
class TransactionRecord
{
public:
// Update COMMON_TYPES in TransactionFilterProxyWhen when adding a new type
enum Type
{
Other,