diff options
| author | Philip Kaufmann <[email protected]> | 2012-06-14 19:18:30 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2012-07-07 16:43:46 +0200 |
| commit | c7441658da9cfc7680f1cc1db098a71c5d2d7a3f (patch) | |
| tree | 81b5d9209b1fecd57c37b18ce6baacdcb6a4e1a4 /src/qt/rpcconsole.cpp | |
| parent | Merge pull request #1565 from jrmithdobbs/socks5-fix (diff) | |
| download | discoin-c7441658da9cfc7680f1cc1db098a71c5d2d7a3f.tar.xz discoin-c7441658da9cfc7680f1cc1db098a71c5d2d7a3f.zip | |
show used OpenSSL library version in debug window
Diffstat (limited to 'src/qt/rpcconsole.cpp')
| -rw-r--r-- | src/qt/rpcconsole.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp index 7b40db076..08f936e71 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(); |