From 8166650ae0a9da929e51470238eea9c2f1b31e42 Mon Sep 17 00:00:00 2001 From: Thomas Winget Date: Mon, 16 Jun 2014 14:14:09 -0400 Subject: [PATCH] up tx splits limit 5 -> 30 --- src/simplewallet/simplewallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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> simple_wallet::split_ void simple_wallet::create_transactions(std::vector dsts, const size_t fake_outs_count, const uint64_t unlock_time, const uint64_t fee, const std::vector 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;