Set both time/height header caches at the same time
This commit is contained in:
parent
610a91719c
commit
928d4a9ac5
1 changed files with 2 additions and 0 deletions
|
@ -82,6 +82,7 @@ int ClientModel::getHeaderTipHeight() const
|
|||
LOCK(cs_main);
|
||||
if (pindexBestHeader) {
|
||||
cachedBestHeaderHeight = pindexBestHeader->nHeight;
|
||||
cachedBestHeaderTime = pindexBestHeader->GetBlockTime();
|
||||
}
|
||||
}
|
||||
return cachedBestHeaderHeight;
|
||||
|
@ -92,6 +93,7 @@ int64_t ClientModel::getHeaderTipTime() const
|
|||
if (cachedBestHeaderTime == -1) {
|
||||
LOCK(cs_main);
|
||||
if (pindexBestHeader) {
|
||||
cachedBestHeaderHeight = pindexBestHeader->nHeight;
|
||||
cachedBestHeaderTime = pindexBestHeader->GetBlockTime();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue