Merge pull request #2248 from gavinandresen/issue2239
Prevent Qt crash at startup with an empty data directory
This commit is contained in:
commit
4dfae2fd2f
1 changed files with 4 additions and 1 deletions
|
@ -48,7 +48,10 @@ int ClientModel::getNumBlocksAtStartup()
|
||||||
|
|
||||||
QDateTime ClientModel::getLastBlockDate() const
|
QDateTime ClientModel::getLastBlockDate() const
|
||||||
{
|
{
|
||||||
return QDateTime::fromTime_t(pindexBest->GetBlockTime());
|
if (pindexBest)
|
||||||
|
return QDateTime::fromTime_t(pindexBest->GetBlockTime());
|
||||||
|
else
|
||||||
|
return QDateTime::fromTime_t(1231006505); // Genesis block's time
|
||||||
}
|
}
|
||||||
|
|
||||||
void ClientModel::updateTimer()
|
void ClientModel::updateTimer()
|
||||||
|
|
Loading…
Reference in a new issue