Only sync masternode assets after new block

This commit is contained in:
Evan Duffield 2015-07-06 11:12:56 -07:00
parent 5f3543efa5
commit 1af0fa5098

View File

@ -2356,7 +2356,7 @@ void ThreadCheckDarkSendPool()
if(!fIsInitialDownload) {
CBlockIndex* pindexPrev = chainActive.Tip();
if(pindexPrev != NULL) {
if(pindexPrev->nTime > GetAdjustedTime() - (60*24))
if(pindexPrev->nTime > GetAdjustedTime() - 60)
{
LOCK(cs_vNodes);