diff options
author | luigi1111 <luigi1111w@gmail.com> | 2021-04-22 01:35:20 -0400 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2021-04-22 01:35:20 -0400 |
commit | 9bba3f4767c32292cd616512cc492ca416f6adc1 (patch) | |
tree | ca626c29cda8a00891be0e0c78fd73eec161e73c /src/wallet/api | |
parent | Merge pull request #7643 (diff) | |
parent | monero-wallet-cli: improve error message when tx amount is zero (diff) | |
download | monero-9bba3f4767c32292cd616512cc492ca416f6adc1.tar.xz |
Merge pull request #7651
c8ff1d4 monero-wallet-cli: improve error message when tx amount is zero (Elliot Wirrick)
Diffstat (limited to 'src/wallet/api')
-rw-r--r-- | src/wallet/api/wallet.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp index 5d9eb7a14..adff042ad 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -1565,8 +1565,10 @@ PendingTransaction *WalletImpl::createTransactionMultDest(const std::vector<stri setStatusError(writer.str()); } catch (const tools::error::tx_sum_overflow& e) { setStatusError(e.what()); + } catch (const tools::error::zero_amount&) { + setStatusError(tr("destination amount is zero")); } catch (const tools::error::zero_destination&) { - setStatusError(tr("one of destinations is zero")); + setStatusError(tr("transaction has no destination")); } catch (const tools::error::tx_too_big& e) { setStatusError(tr("failed to find a suitable way to split transactions")); } catch (const tools::error::transfer_error& e) { |