]> Nutra Git (v2) - gamesguru/feather.git/commitdiff
send: improve split tx error message
authortobtoht <tob@featherwallet.org>
Sun, 29 Sep 2024 12:38:42 +0000 (14:38 +0200)
committertobtoht <tob@featherwallet.org>
Sun, 29 Sep 2024 12:38:42 +0000 (14:38 +0200)
src/MainWindow.cpp

index 44b68080d86ac999fe9fb842744aec4fa89e8338..1bcd07b7d006653b8b110e8a2a51a8525020d022 100644 (file)
@@ -910,7 +910,7 @@ void MainWindow::onTransactionCreated(PendingTransaction *tx, const QVector<QStr
         return;
     }
     else if (tx->txCount() > 1) {
-        Utils::showError(this, "Failed to construct transaction", "Split transactions are not supported", {"Try sending a smaller amount."});
+        Utils::showError(this, "Failed to construct transaction", "Transaction tries to spend too many inputs", {"Send a smaller amount of XMR to yourself first."});
         m_wallet->disposeTransaction(tx);
         return;
     }