aboutsummaryrefslogtreecommitdiff
path: root/src/qt/overviewpage.h
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2020-01-04 21:20:00 +0200
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2020-05-27 11:55:44 +0300
commit8d75115844baefe5cad4d82ec8dce001dd16eb9c (patch)
tree3e22c8258639bbf54c819fd9a058b928762e36ff /src/qt/overviewpage.h
parent73d8ef72742ab9193e9e95158b26176bfaab3f66 (diff)
downloadbitcoin-8d75115844baefe5cad4d82ec8dce001dd16eb9c.tar.xz
qt: Add privacy feature to Overview page
Diffstat (limited to 'src/qt/overviewpage.h')
-rw-r--r--src/qt/overviewpage.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/overviewpage.h b/src/qt/overviewpage.h
index 00ba7ad4ce..4cf673b6a6 100644
--- a/src/qt/overviewpage.h
+++ b/src/qt/overviewpage.h
@@ -39,6 +39,7 @@ public:
public Q_SLOTS:
void setBalance(const interfaces::WalletBalances& balances);
+ void setPrivacy(bool privacy);
Q_SIGNALS:
void transactionClicked(const QModelIndex &index);
@@ -49,6 +50,7 @@ private:
ClientModel *clientModel;
WalletModel *walletModel;
interfaces::WalletBalances m_balances;
+ bool m_privacy{false};
TxViewDelegate *txdelegate;
std::unique_ptr<TransactionFilterProxy> filter;