aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas Winget <tewinget@gmail.com>2014-06-16 14:14:09 -0400
committerThomas Winget <tewinget@gmail.com>2014-06-30 07:16:50 -0400
commit8166650ae0a9da929e51470238eea9c2f1b31e42 (patch)
treeb70dc9ee47bf235ed532b0b31b013f65d73a4795 /src
parentfinal changes to get transaction splitting building. needs testing. (diff)
downloadmonero-8166650ae0a9da929e51470238eea9c2f1b31e42.tar.xz
up tx splits limit 5 -> 30
Diffstat (limited to 'src')
-rw-r--r--src/simplewallet/simplewallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp
index a54d92a41..e5cc4d166 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -839,7 +839,7 @@ std::vector<std::vector<cryptonote::tx_destination_entry>> simple_wallet::split_
void simple_wallet::create_transactions(std::vector<cryptonote::tx_destination_entry> dsts, const size_t fake_outs_count, const uint64_t unlock_time, const uint64_t fee, const std::vector<uint8_t> extra)
{
// for now, limit to 5 attempts. TODO: discuss a good number to limit to.
- const size_t MAX_ATTEMPTS = 5;
+ const size_t MAX_ATTEMPTS = 30;
// failsafe split attempt counter
size_t attempt_count = 0;