diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-11-07 14:04:40 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-11-07 14:04:40 +0000 |
commit | 5d92c7ccf6ffea85a0d95ef1da4ca3dc812f9266 (patch) | |
tree | 7d419bddceef0b403a9eabfd324fc616e8c7b158 | |
parent | Merge pull request #2605 (diff) | |
download | monero-5d92c7ccf6ffea85a0d95ef1da4ca3dc812f9266.tar.xz |
wallet2: typo fix in error message
-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 f0eaf2331..d0e11b246 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -5803,7 +5803,7 @@ std::vector<wallet2::pending_tx> wallet2::create_transactions_all(uint64_t below std::vector<size_t> unused_dust_indices; const bool use_rct = use_fork_rules(4, 0); - THROW_WALLET_EXCEPTION_IF(unlocked_balance(subaddr_account) == 0, error::wallet_internal_error, "No unclocked balance in the entire wallet"); + THROW_WALLET_EXCEPTION_IF(unlocked_balance(subaddr_account) == 0, error::wallet_internal_error, "No unlocked balance in the entire wallet"); std::map<uint32_t, uint64_t> balance_per_subaddr = unlocked_balance_per_subaddress(subaddr_account); |