Don't expire blocks visible to the client. (#13255)

This commit is contained in:
lhofhansl 2023-02-26 14:18:18 -08:00 committed by GitHub
parent 2083252c05
commit fe3ea090d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -294,12 +294,6 @@ void RemoteClient::GetNextBlocks (
continue;
}
/*
Don't send already sent blocks
*/
if (m_blocks_sent.find(p) != m_blocks_sent.end())
continue;
/*
Check if map has this block
*/
@ -310,6 +304,12 @@ void RemoteClient::GetNextBlocks (
// Reset usage timer, this block will be of use in the future.
block->resetUsageTimer();
/*
Don't send already sent blocks
*/
if (m_blocks_sent.find(p) != m_blocks_sent.end())
continue;
// Check whether the block exists (with data)
if (!block->isGenerated())
block_not_found = true;