mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
cryptonote_protocol_handler: fix crash in debug log
This commit is contained in:
parent
e3da0ca828
commit
6fc2dc3927
@ -662,9 +662,6 @@ namespace cryptonote
|
||||
return 1;
|
||||
}
|
||||
|
||||
for (auto txidx: arg.missing_tx_indices)
|
||||
MDEBUG(" tx " << b.tx_hashes[txidx]);
|
||||
|
||||
std::vector<crypto::hash> txids;
|
||||
NOTIFY_NEW_FLUFFY_BLOCK::request fluffy_response;
|
||||
fluffy_response.b.block = t_serializable_object_to_blob(b);
|
||||
@ -674,6 +671,7 @@ namespace cryptonote
|
||||
{
|
||||
if(tx_idx < b.tx_hashes.size())
|
||||
{
|
||||
MDEBUG(" tx " << b.tx_hashes[tx_idx]);
|
||||
txids.push_back(b.tx_hashes[tx_idx]);
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user