mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
Merge pull request 'Send: Show error when no connecting to daemon' (#250) from tobtoht/feather:send_no_daemon into master
Reviewed-on: https://git.wownero.com/feather/feather/pulls/250
This commit is contained in:
commit
bd4400a7f2
1 changed files with 8 additions and 0 deletions
|
@ -12,6 +12,7 @@ SendWidget::SendWidget(QWidget *parent) :
|
||||||
ui(new Ui::SendWidget)
|
ui(new Ui::SendWidget)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
m_ctx = MainWindow::getContext();
|
||||||
|
|
||||||
QString amount_rx = R"(^\d{0,8}[\.,]\d{0,12}|(all)$)";
|
QString amount_rx = R"(^\d{0,8}[\.,]\d{0,12}|(all)$)";
|
||||||
QRegExp rx;
|
QRegExp rx;
|
||||||
|
@ -80,6 +81,13 @@ void SendWidget::fillAddress(const QString &address) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void SendWidget::sendClicked() {
|
void SendWidget::sendClicked() {
|
||||||
|
if (m_ctx->currentWallet->connectionStatus() != Wallet::ConnectionStatus_Connected) {
|
||||||
|
QMessageBox::warning(this, "Error", "Unable to create transaction:\n\n"
|
||||||
|
"Wallet is not connected to a node.\n"
|
||||||
|
"Go to File -> Settings -> Node to manually connect to a node.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
double amount;
|
double amount;
|
||||||
QString currency = ui->comboCurrencySelection->currentText();
|
QString currency = ui->comboCurrencySelection->currentText();
|
||||||
QString recipient = ui->lineAddress->text().simplified().remove(' ');
|
QString recipient = ui->lineAddress->text().simplified().remove(' ');
|
||||||
|
|
Loading…
Reference in a new issue