Browse Source

Bitcoin-Qt: add Genesis blocks time for testnet

- add the Genesis blocks time for the testnet in
  ClientModel::getLastBlockDate()
pull/145/head
Philip Kaufmann 11 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)
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

Loading…
Cancel
Save