Remove side effect in assertion in ProcessGetData
A side-effect was introduced into an assertion in 7a0e84d
. This commit
fixes that.
This commit is contained in:
parent
358a61ee06
commit
4a48a0671d
1 changed files with 2 additions and 1 deletions
|
@ -3390,7 +3390,8 @@ void static ProcessGetData(CNode* pfrom)
|
||||||
{
|
{
|
||||||
// Send block from disk
|
// Send block from disk
|
||||||
CBlock block;
|
CBlock block;
|
||||||
assert(ReadBlockFromDisk(block, (*mi).second));
|
if (!ReadBlockFromDisk(block, (*mi).second))
|
||||||
|
assert(!"cannot load block from disk");
|
||||||
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)
|
||||||
|
|
Loading…
Reference in a new issue