diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-07-07 10:28:31 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-07-07 10:29:10 +0200 |
| commit | 4851d0960313a43b754d8b652ffe194fbb52c597 (patch) | |
| tree | 92859c1d16409ac6adf8b13140ba3527d27c72c4 /src/qt/clientmodel.cpp | |
| parent | Merge pull request #4470 (diff) | |
| parent | Use GetBlockTime() more (diff) | |
| download | discoin-4851d0960313a43b754d8b652ffe194fbb52c597.tar.xz discoin-4851d0960313a43b754d8b652ffe194fbb52c597.zip | |
Merge pull request #4446
209377a Use GetBlockTime() more (jtimon)
Diffstat (limited to 'src/qt/clientmodel.cpp')
| -rw-r--r-- | src/qt/clientmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/clientmodel.cpp b/src/qt/clientmodel.cpp index 9c9565be6..4c21eb559 100644 --- a/src/qt/clientmodel.cpp +++ b/src/qt/clientmodel.cpp @@ -85,7 +85,7 @@ QDateTime ClientModel::getLastBlockDate() const if (chainActive.Tip()) return QDateTime::fromTime_t(chainActive.Tip()->GetBlockTime()); else - return QDateTime::fromTime_t(Params().GenesisBlock().nTime); // Genesis block's time of current network + return QDateTime::fromTime_t(Params().GenesisBlock().GetBlockTime()); // Genesis block's time of current network } double ClientModel::getVerificationProgress() const |