diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-10-30 11:30:53 +0100 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-11-11 14:20:00 +0100 |
commit | 7634e0d8de4aac80a3a84dd2438f24f98670d44d (patch) | |
tree | 7f109129df59a9395fd8e5c0a07cedfb58daa7b5 /src | |
parent | 59be91ae1e8da1e679adbb7c84e8bca749daa8a7 (diff) |
[Qt] paymentserver: start netManager in uiReady()
- remove explicit init of netManager as this is done in the constructor
anyway
- move initNetManager() call to uiReady(), which removes an assert() and
allows us to use message() in initNetManager() (currently unused but
could be necessary because of proxy related messages)
- make initNetManager() private
- update paymentservertests.cpp
Diffstat (limited to 'src')
-rw-r--r-- | src/qt/bitcoin.cpp | 1 | ||||
-rw-r--r-- | src/qt/paymentserver.cpp | 2 | ||||
-rw-r--r-- | src/qt/paymentserver.h | 6 | ||||
-rw-r--r-- | src/qt/test/paymentservertests.cpp | 1 |
4 files changed, 4 insertions, 6 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 2fa7979eae..e435972686 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -308,7 +308,6 @@ int main(int argc, char *argv[]) PaymentServer::LoadRootCAs(); paymentServer->setOptionsModel(&optionsModel); - paymentServer->initNetManager(); if (splashref) splash.finish(&window); diff --git a/src/qt/paymentserver.cpp b/src/qt/paymentserver.cpp index cb6291c35d..34da0f90ec 100644 --- a/src/qt/paymentserver.cpp +++ b/src/qt/paymentserver.cpp @@ -341,7 +341,7 @@ void PaymentServer::initNetManager() void PaymentServer::uiReady() { - assert(netManager != NULL); // Must call initNetManager before uiReady() + initNetManager(); saveURIs = false; foreach (const QString& s, savedPaymentRequests) diff --git a/src/qt/paymentserver.h b/src/qt/paymentserver.h index 65bf034354..19cba70cb6 100644 --- a/src/qt/paymentserver.h +++ b/src/qt/paymentserver.h @@ -77,9 +77,6 @@ public: // Return certificate store static X509_STORE* getCertStore() { return certStore; } - // Setup networking - void initNetManager(); - // Constructor registers this on the parent QApplication to // receive QEvent::FileOpen events bool eventFilter(QObject *object, QEvent *event); @@ -117,6 +114,9 @@ private: void handleURIOrFile(const QString& s); void fetchRequest(const QUrl& url); + // Setup networking + void initNetManager(); + bool saveURIs; // true during startup QLocalServer* uriServer; diff --git a/src/qt/test/paymentservertests.cpp b/src/qt/test/paymentservertests.cpp index f7d26fb919..b8f2cc65cb 100644 --- a/src/qt/test/paymentservertests.cpp +++ b/src/qt/test/paymentservertests.cpp @@ -60,7 +60,6 @@ void PaymentServerTests::paymentServerTests() X509_STORE_add_cert(caStore, parse_b64der_cert(caCert_BASE64)); PaymentServer::LoadRootCAs(caStore); server->setOptionsModel(&optionsModel); - server->initNetManager(); server->uiReady(); // Now feed PaymentRequests to server, and observe signals it produces: |