aboutsummaryrefslogtreecommitdiff
path: root/src/qt/clientmodel.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2013-04-04 22:15:47 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2013-04-04 22:15:47 +0200
commit8d432cd66d545c70189f8eb720b3a0b6ca02bbd0 (patch)
tree7eb3766d45a095f8ffd101fd95538389b4bf8c9e /src/qt/clientmodel.cpp
parent8da48cb5618892c3c534bcff6c90857ff99e1ca2 (diff)
downloadbitcoin-8d432cd66d545c70189f8eb720b3a0b6ca02bbd0.tar.xz
Bitcoin-Qt: add Genesis blocks time for testnet
- add the Genesis blocks time for the testnet in ClientModel::getLastBlockDate()
Diffstat (limited to 'src/qt/clientmodel.cpp')
-rw-r--r--src/qt/clientmodel.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/qt/clientmodel.cpp b/src/qt/clientmodel.cpp
index ae66924181..863176aa1b 100644
--- a/src/qt/clientmodel.cpp
+++ b/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