mirror of
				https://git.wownero.com/wowlet/wowlet.git
				synced 2024-08-15 01:03:14 +00:00 
			
		
		
		
	Send: Show error when no connecting to daemon
This commit is contained in:
		
							parent
							
								
									45b3f1ebde
								
							
						
					
					
						commit
						c0e4d48fae
					
				
					 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…
	
	Add table
		Add a link
		
	
		Reference in a new issue