mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-10 21:23:27 +01:00
rpc: decrease memory usage a bit in getblocks.bin
This commit is contained in:
parent
335681896a
commit
c1b10381fc
@ -205,14 +205,17 @@ namespace cryptonote
|
|||||||
}
|
}
|
||||||
size_t txidx = 0;
|
size_t txidx = 0;
|
||||||
ntxes += bd.second.size();
|
ntxes += bd.second.size();
|
||||||
for(const auto& t: bd.second)
|
for (std::list<cryptonote::blobdata>::iterator i = bd.second.begin(); i != bd.second.end(); ++i)
|
||||||
{
|
{
|
||||||
|
unpruned_size += i->size();
|
||||||
if (req.prune)
|
if (req.prune)
|
||||||
res.blocks.back().txs.push_back(get_pruned_tx_blob(t));
|
res.blocks.back().txs.push_back(get_pruned_tx_blob(std::move(*i)));
|
||||||
else
|
else
|
||||||
res.blocks.back().txs.push_back(t);
|
res.blocks.back().txs.push_back(std::move(*i));
|
||||||
|
i->clear();
|
||||||
|
i->shrink_to_fit();
|
||||||
pruned_size += res.blocks.back().txs.back().size();
|
pruned_size += res.blocks.back().txs.back().size();
|
||||||
unpruned_size += t.size();
|
|
||||||
res.output_indices.back().indices.push_back(COMMAND_RPC_GET_BLOCKS_FAST::tx_output_indices());
|
res.output_indices.back().indices.push_back(COMMAND_RPC_GET_BLOCKS_FAST::tx_output_indices());
|
||||||
bool r = m_core.get_tx_outputs_gindexs(b.tx_hashes[txidx++], res.output_indices.back().indices.back().indices);
|
bool r = m_core.get_tx_outputs_gindexs(b.tx_hashes[txidx++], res.output_indices.back().indices.back().indices);
|
||||||
if (!r)
|
if (!r)
|
||||||
|
Loading…
Reference in New Issue
Block a user