From 47970dac41f685810663e44c058a37fd1485a532 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Sat, 12 Oct 2013 16:21:37 +0200 Subject: [PATCH] clientmodel: remove 2 hard-coded values, use CChainParams instead --- src/qt/clientmodel.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/qt/clientmodel.cpp b/src/qt/clientmodel.cpp index af96f11bf..1846b3f7c 100644 --- a/src/qt/clientmodel.cpp +++ b/src/qt/clientmodel.cpp @@ -55,10 +55,8 @@ QDateTime ClientModel::getLastBlockDate() const { if (chainActive.Tip()) return QDateTime::fromTime_t(chainActive.Tip()->GetBlockTime()); - else if(!isTestNet()) - return QDateTime::fromTime_t(1231006505); // Genesis block's time else - return QDateTime::fromTime_t(1296688602); // Genesis block's time (testnet) + return QDateTime::fromTime_t(Params().GenesisBlock().nTime); // Genesis block's time of current network } double ClientModel::getVerificationProgress() const