aboutsummaryrefslogtreecommitdiff
path: root/src/qt/rpcconsole.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2012-06-14 19:18:30 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2012-07-07 16:43:46 +0200
commitc7441658da9cfc7680f1cc1db098a71c5d2d7a3f (patch)
tree81b5d9209b1fecd57c37b18ce6baacdcb6a4e1a4 /src/qt/rpcconsole.cpp
parent0ba5bacd0c47c947a9050d1f393bee437e49cecc (diff)
downloadbitcoin-c7441658da9cfc7680f1cc1db098a71c5d2d7a3f.tar.xz
show used OpenSSL library version in debug window
Diffstat (limited to 'src/qt/rpcconsole.cpp')
-rw-r--r--src/qt/rpcconsole.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp
index 7b40db0765..08f936e719 100644
--- a/src/qt/rpcconsole.cpp
+++ b/src/qt/rpcconsole.cpp
@@ -14,6 +14,7 @@
#include <QScrollBar>
#include <boost/tokenizer.hpp>
+#include <openssl/crypto.h>
// TODO: make it possible to filter out categories (esp debug messages when implemented)
// TODO: receive errors and debug messages through ClientModel
@@ -119,6 +120,9 @@ RPCConsole::RPCConsole(QWidget *parent) :
connect(ui->clearButton, SIGNAL(clicked()), this, SLOT(clear()));
+ // set OpenSSL version label
+ ui->openSSLVersion->setText(SSLeay_version(SSLEAY_VERSION));
+
startExecutor();
clear();