mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-22 03:29:24 +00:00
send: improve split tx error message
This commit is contained in:
parent
cbbc9526a5
commit
ef8db19c94
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue