aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet2.cpp
diff options
context:
space:
mode:
authorNano Akron <nanoakron@users.noreply.github.com>2017-05-09 16:02:57 +0100
committerNano Akron <nanoakron@users.noreply.github.com>2017-05-09 16:02:57 +0100
commite2529347b6be707aab2a30f4ba09e2218c562aba (patch)
tree00bfb3aa03c76297b963fd9ad910285f0181bc4d /src/wallet/wallet2.cpp
parentRemove the 1.25x multiplier in max transaction size in just the wallet (diff)
downloadmonero-e2529347b6be707aab2a30f4ba09e2218c562aba.tar.xz
Correct spelling of 'get_upper_transaction_size_limit'
Diffstat (limited to '')
-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 9220b10b2..8c262b094 100644
--- a/src/wallet/wallet2.cpp
+++ b/src/wallet/wallet2.cpp
@@ -3788,7 +3788,7 @@ void wallet2::transfer_selected(const std::vector<cryptonote::tx_destination_ent
// throw if attempting a transaction with no destinations
THROW_WALLET_EXCEPTION_IF(dsts.empty(), error::zero_destination);
- uint64_t upper_transaction_size_limit = get_upper_tranaction_size_limit();
+ uint64_t upper_transaction_size_limit = get_upper_transaction_size_limit();
uint64_t needed_money = fee;
LOG_PRINT_L2("transfer: starting with fee " << print_money (needed_money));