This commit is contained in:
jl777
2018-04-20 12:32:39 +03:00
parent b1d85b23e6
commit 66dd02d288
2 changed files with 12 additions and 9 deletions

View File

@@ -637,7 +637,7 @@ static bool ProcessBlockFound(CBlock* pblock)
TrackMinedBlock(pblock->GetHash());
if ( ASSETCHAINS_STAKED != 0 )
{
fprintf(stderr,"broadcast new block t.%u\n",(uint32_t)time(NULL));
//fprintf(stderr,"broadcast new block t.%u\n",(uint32_t)time(NULL));
{
LOCK(cs_vNodes);
BOOST_FOREACH(CNode* pnode, vNodes)
@@ -647,7 +647,7 @@ static bool ProcessBlockFound(CBlock* pblock)
pnode->PushMessage("block", *pblock);
}
}
fprintf(stderr,"finished broadcast new block t.%u\n",(uint32_t)time(NULL));
//fprintf(stderr,"finished broadcast new block t.%u\n",(uint32_t)time(NULL));
}
return true;
}