diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 151da5602..b798ae264 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -1146,10 +1146,12 @@ std::vector wallet2::create_transactions(std::vector wallet2::create_dust_sweep_transactions() for(attempt_count = 1; ;attempt_count++) { - size_t num_outputs_per_tx = (num_dust_outputs + attempt_count - 1) / attempt_count; + size_t num_tx = 0.5 + pow(1.7,attempt_count-1); + size_t num_outputs_per_tx = (num_dust_outputs + num_tx - 1) / num_tx; std::vector ptx_vector; try { // for each new tx - for (size_t i=0; i