diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2015-11-09 11:45:07 +0100 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2015-11-20 08:40:43 +0100 |
commit | c197798d1b7364e8225beaaa716399441288203e (patch) | |
tree | 56a9c09e5a07ce31295486c7411b56ddcebe4a39 /src/qt/rpcconsole.h | |
parent | 6176e9bf3d553862c67720d218a30553d771aa63 (diff) |
[Qt] simple mempool info in debug window
Diffstat (limited to 'src/qt/rpcconsole.h')
-rw-r--r-- | src/qt/rpcconsole.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/rpcconsole.h b/src/qt/rpcconsole.h index d5932ff149..5e749336cf 100644 --- a/src/qt/rpcconsole.h +++ b/src/qt/rpcconsole.h @@ -77,6 +77,8 @@ public Q_SLOTS: void setNumConnections(int count); /** Set number of blocks and last block date shown in the UI */ void setNumBlocks(int count, const QDateTime& blockDate); + /** Set size (number of transactions and memory usage) of the mempool in the UI */ + void setMempoolSize(long numberOfTxs, size_t dynUsage); /** Go forward or back in history */ void browseHistory(int offset); /** Scroll console view to end */ |