Wormhole connection

This commit is contained in:
Aditya Kulkarni
2019-02-06 12:56:58 -08:00
parent 0e997eedf4
commit 445c2845da
5 changed files with 137 additions and 12 deletions

View File

@@ -8,6 +8,7 @@
class RPC;
class Settings;
class WSServer;
class WormholeClient;
using json = nlohmann::json;
@@ -44,6 +45,8 @@ public:
QString doSendTxValidations(Tx tx);
void setDefaultPayFrom();
void replaceWormholeClient(WormholeClient* newClient);
Ui::MainWindow* ui;
QLabel* statusLabel;
@@ -106,7 +109,8 @@ private:
void createWebsocket();
WSServer* wsserver = nullptr;
WSServer* wsserver = nullptr;
WormholeClient* wormhole = nullptr;
RPC* rpc = nullptr;
QCompleter* labelCompleter = nullptr;