Merge pull request #9838

2f2a8c4 wallet: Improve Fee Priority Code for Clarity (tzadiko)
This commit is contained in:
tobtoht
2025-07-10 12:45:39 +00:00
10 changed files with 304 additions and 101 deletions

View File

@@ -85,7 +85,7 @@ bool do_send_money(tools::wallet2& w1, tools::wallet2& w2, size_t mix_in_factor,
try
{
std::vector<tools::wallet2::pending_tx> ptx;
ptx = w1.create_transactions_2(dsts, mix_in_factor, 0, std::vector<uint8_t>(), 0, {});
ptx = w1.create_transactions_2(dsts, mix_in_factor, tools::fee_priority::Default, std::vector<uint8_t>(), 0, {});
for (auto &p: ptx)
w1.commit_tx(p);
return true;