Requst payment dialog

This commit is contained in:
Aditya Kulkarni
2019-03-22 13:27:24 -07:00
parent 9dd6821178
commit c70819be0f
9 changed files with 194 additions and 50 deletions

View File

@@ -42,6 +42,9 @@ public:
void updateLabelsAutoComplete();
RPC* getRPC() { return rpc; }
QCompleter* getLabelCompleter() { return labelCompleter; }
QRegExpValidator* getAmountValidator() { return amtValidator; }
QString doSendTxValidations(Tx tx);
void setDefaultPayFrom();
@@ -126,8 +129,10 @@ private:
WSServer* wsserver = nullptr;
WormholeClient* wormhole = nullptr;
RPC* rpc = nullptr;
QCompleter* labelCompleter = nullptr;
RPC* rpc = nullptr;
QCompleter* labelCompleter = nullptr;
QRegExpValidator* amtValidator = nullptr;
QRegExpValidator* feesValidator = nullptr;
QMovie* loadingMovie;
};