added 1 TODO

master
Thomas Baumbach 2013-09-25 20:51:16 +02:00
parent 0aff39828e
commit 345a7d8e71
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ public:
if (_blocks == NULL) return NULL;
CBlock* block = NULL;
block = new CBlock((_blocks+thread_id)->GetBlockHeader());
block->nTime = GetAdjustedTime();
block->nTime = GetAdjustedTime(); //TODO: check if this is the same time like before!?
//std::cout << "[WORKER" << thread_id << "] got_work block=" << block->GetHash().ToString().c_str() << std::endl;
return block;
}