From ef8db19c94ee412dec6cda4dfd8f386a3f3e3de0 Mon Sep 17 00:00:00 2001 From: tobtoht Date: Sun, 29 Sep 2024 14:38:42 +0200 Subject: [PATCH] send: improve split tx error message --- src/MainWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 44b6808..1bcd07b 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -910,7 +910,7 @@ void MainWindow::onTransactionCreated(PendingTransaction *tx, const QVectortxCount() > 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; }