Bitcoin-Qt: add Genesis blocks time for testnet

- add the Genesis blocks time for the testnet in
  ClientModel::getLastBlockDate()
This commit is contained in:
Philip Kaufmann 2013-04-04 22:15:47 +02:00
parent 8da48cb561
commit 8d432cd66d
1 changed files with 3 additions and 1 deletions

View File

@ -52,8 +52,10 @@ QDateTime ClientModel::getLastBlockDate() const
{
if (pindexBest)
return QDateTime::fromTime_t(pindexBest->GetBlockTime());
else
else if(!isTestNet())
return QDateTime::fromTime_t(1231006505); // Genesis block's time
else
return QDateTime::fromTime_t(1296688602); // Genesis block's time (testnet)
}
double ClientModel::getVerificationProgress() const