diff options
author | luigi1111 <luigi1111w@gmail.com> | 2020-09-15 19:56:49 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2020-09-15 19:56:49 -0500 |
commit | 2b1488ef6f86d4ddf3a006e82165fd229115de45 (patch) | |
tree | 654fdb688c06cf44c05a75b13c689859e469e467 /src/wallet | |
parent | Merge pull request #6745 (diff) | |
parent | update error message "No unlocked balance in the specified account" (diff) | |
download | monero-2b1488ef6f86d4ddf3a006e82165fd229115de45.tar.xz |
Merge pull request #6793
de9a9fb update error message 'No unlocked balance in the specified account' (woodser)
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/wallet2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index e2a4d41c1..063c493ce 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -10359,7 +10359,7 @@ std::vector<wallet2::pending_tx> wallet2::create_transactions_all(uint64_t below const size_t tx_weight_per_ring = tx_weight_two_rings - tx_weight_one_ring; const uint64_t fractional_threshold = (fee_multiplier * base_fee * tx_weight_per_ring) / (use_per_byte_fee ? 1 : 1024); - THROW_WALLET_EXCEPTION_IF(unlocked_balance(subaddr_account, false) == 0, error::wallet_internal_error, "No unlocked balance in the entire wallet"); + THROW_WALLET_EXCEPTION_IF(unlocked_balance(subaddr_account, false) == 0, error::wallet_internal_error, "No unlocked balance in the specified account"); std::map<uint32_t, std::pair<std::vector<size_t>, std::vector<size_t>>> unused_transfer_dust_indices_per_subaddr; |