mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-12-23 13:47:47 +00:00
Warnings: unused variable in core/blockchain.cpp
This commit is contained in:
parent
0a1ddc2eff
commit
a1c4307128
1 changed files with 1 additions and 1 deletions
|
@ -5150,7 +5150,7 @@ bool Blockchain::prepare_handle_incoming_blocks(const std::vector<block_complete
|
||||||
if (m_cancel)
|
if (m_cancel)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
for (const auto &tx_blob : entry.txs)
|
for (size_t i = 0; i < entry.txs.size(); ++i)
|
||||||
{
|
{
|
||||||
if (tx_index >= txes.size())
|
if (tx_index >= txes.size())
|
||||||
SCAN_TABLE_QUIT("tx_index is out of sync");
|
SCAN_TABLE_QUIT("tx_index is out of sync");
|
||||||
|
|
Loading…
Reference in a new issue