This commit is contained in:
jl777
2017-02-03 16:10:18 +02:00
parent ad70a28f2f
commit 13931733fb

View File

@@ -4343,7 +4343,11 @@ void static ProcessGetData(CNode* pfrom)
// Send block from disk // Send block from disk
CBlock block; CBlock block;
if (!ReadBlockFromDisk(block, (*mi).second)) if (!ReadBlockFromDisk(block, (*mi).second))
{
assert(!"cannot load block from disk"); assert(!"cannot load block from disk");
}
else
{
if (inv.type == MSG_BLOCK) if (inv.type == MSG_BLOCK)
pfrom->PushMessage("block", block); pfrom->PushMessage("block", block);
else // MSG_FILTERED_BLOCK) else // MSG_FILTERED_BLOCK)
@@ -4367,7 +4371,7 @@ void static ProcessGetData(CNode* pfrom)
// else // else
// no response // no response
} }
}
// Trigger the peer node to send a getblocks request for the next batch of inventory // Trigger the peer node to send a getblocks request for the next batch of inventory
if (inv.hash == pfrom->hashContinue) if (inv.hash == pfrom->hashContinue)
{ {