Browse Source

Bitcoin-Qt: add Genesis blocks time for testnet

- add the Genesis blocks time for the testnet in
  ClientModel::getLastBlockDate()
0.8
Philip Kaufmann 12 years ago
parent
commit
8d432cd66d
  1. 4
      src/qt/clientmodel.cpp

4
src/qt/clientmodel.cpp

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

Loading…
Cancel
Save