wallet2: use the same exponential splitting for normal txes

release-v0.11.0.0
moneromooo-monero 9 years ago
parent 7c8d3be656
commit 2952ffd80f
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -1146,10 +1146,12 @@ std::vector<wallet2::pending_tx> wallet2::create_transactions(std::vector<crypto
for(attempt_count = 1; ;attempt_count++)
{
auto split_values = split_amounts(dsts, attempt_count);
size_t num_tx = 0.5 + pow(1.7,attempt_count-1);
auto split_values = split_amounts(dsts, num_tx);
// Throw if split_amounts comes back with a vector of size different than it should
if (split_values.size() != attempt_count)
if (split_values.size() != num_tx)
{
throw std::runtime_error("Splitting transactions returned a number of potential tx not equal to what was requested");
}

Loading…
Cancel
Save