aboutsummaryrefslogtreecommitdiff
path: root/src/wallet
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-11-07 14:04:40 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-11-07 14:04:40 +0000
commit5d92c7ccf6ffea85a0d95ef1da4ca3dc812f9266 (patch)
tree7d419bddceef0b403a9eabfd324fc616e8c7b158 /src/wallet
parentMerge pull request #2605 (diff)
downloadmonero-5d92c7ccf6ffea85a0d95ef1da4ca3dc812f9266.tar.xz
wallet2: typo fix in error message
Diffstat (limited to 'src/wallet')
-rw-r--r--src/wallet/wallet2.cpp2
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);