From 8d432cd66d545c70189f8eb720b3a0b6ca02bbd0 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Thu, 4 Apr 2013 22:15:47 +0200 Subject: [PATCH] Bitcoin-Qt: add Genesis blocks time for testnet - add the Genesis blocks time for the testnet in ClientModel::getLastBlockDate() --- src/qt/clientmodel.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/qt/clientmodel.cpp b/src/qt/clientmodel.cpp index ae6692418..863176aa1 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