mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-19 23:03:45 +01:00
Merge pull request #2248 from gavinandresen/issue2239
Prevent Qt crash at startup with an empty data directory
This commit is contained in:
@@ -48,7 +48,10 @@ int ClientModel::getNumBlocksAtStartup()
|
||||
|
||||
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()
|
||||
|
||||
Reference in New Issue
Block a user