Rename RPC to Controller

This commit is contained in:
Aditya Kulkarni
2019-10-07 12:45:11 -07:00
parent c6f6b1c126
commit 5939632078
20 changed files with 1074 additions and 182 deletions

View File

@@ -7,7 +7,7 @@
#include "recurring.h"
// Forward declare to break circular dependency.
class RPC;
class Controller;
class Settings;
class WSServer;
class WormholeClient;
@@ -42,7 +42,7 @@ public:
~MainWindow();
void updateLabelsAutoComplete();
RPC* getRPC() { return rpc; }
Controller* getRPC() { return rpc; }
QCompleter* getLabelCompleter() { return labelCompleter; }
QRegExpValidator* getAmountValidator() { return amtValidator; }
@@ -139,7 +139,7 @@ private:
WSServer* wsserver = nullptr;
WormholeClient* wormhole = nullptr;
RPC* rpc = nullptr;
Controller* rpc = nullptr;
QCompleter* labelCompleter = nullptr;
QRegExpValidator* amtValidator = nullptr;
QRegExpValidator* feesValidator = nullptr;