diff --git a/src/confirm.ui b/src/confirm.ui index 0d4653b..c329710 100644 --- a/src/confirm.ui +++ b/src/confirm.ui @@ -146,6 +146,19 @@ + + + + color: red; + + + You are sending a transaction while your node is still syncing. This may not work. + + + true + + + diff --git a/src/sendtab.cpp b/src/sendtab.cpp index b4eeef2..6910b63 100644 --- a/src/sendtab.cpp +++ b/src/sendtab.cpp @@ -505,6 +505,9 @@ bool MainWindow::confirmTx(Tx tx) { } } + // Syncing warning + confirm.syncingWarning->setVisible(Settings::getInstance()->isSyncing()); + // And FromAddress in the confirm dialog confirm.sendFrom->setText(fnSplitAddressForWrap(tx.fromAddr));