fixed merge regression in wallet; updated build order for binary releases

This commit is contained in:
Some Random Crypto Guy
2024-10-09 13:37:14 +01:00
parent c5c828516b
commit 6fefb49da0
2 changed files with 8 additions and 7 deletions
+2 -1
View File
@@ -11265,7 +11265,8 @@ std::vector<wallet2::pending_tx> wallet2::create_transactions_all(uint64_t below
// gather all dust and non-dust outputs of specified subaddress (if any) and below specified threshold (if any)
bool fund_found = false;
for (size_t idx = 0; idx < m_transfers_indices[asset_type].size(); idx++)
//for (size_t idx = 0; idx < m_transfers_indices[asset_type].size(); idx++)
for (const auto& idx: m_transfers_indices[asset_type])
{
size_t i = m_transfers_indices[asset_type][idx];
const transfer_details& td = m_transfers[i];