diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2015-11-27 13:20:46 +0100 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2015-11-30 08:50:59 +0100 |
commit | 947d20b84ab271bec5ff08312921961627d1ad80 (patch) | |
tree | e391f64f42f4f5d21c7a87e747dfb961f7531c8a /src/qt/bitcoingui.h | |
parent | e6d50fcdecfdd7281b7aa5e9b573ef1b4e82873f (diff) |
[Qt] reduce cs_main in getVerificationProgress()
Diffstat (limited to 'src/qt/bitcoingui.h')
-rw-r--r-- | src/qt/bitcoingui.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index 2b98dabc56..42da149881 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -29,6 +29,7 @@ class UnitDisplayStatusBarControl; class WalletFrame; class WalletModel; class HelpMessageDialog; +class CBlockIndex; class CWallet; @@ -149,7 +150,7 @@ public Q_SLOTS: /** Set number of connections shown in the UI */ void setNumConnections(int count); /** Set number of blocks and last block date shown in the UI */ - void setNumBlocks(int count, const QDateTime& blockDate); + void setNumBlocks(int count, const QDateTime& blockDate, const CBlockIndex* tip); /** Notify the user of an event from the core network or transaction handling code. @param[in] title the message box / notification title |