aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorGregory Maxwell <greg@xiph.org>2013-05-22 14:01:31 -0700
committerGregory Maxwell <greg@xiph.org>2013-05-22 14:01:31 -0700
commit95c2ba168941958087d5dc7f1e3c9a89bb19f602 (patch)
tree3c0114a3d892fa3269e081790a7a304f683050cf /src/main.cpp
parent0c4434cf776af7b84cfca50360da87feeeb53d1e (diff)
parent95c7db3dbf4012dd02e5f1f30e6d982341facaa6 (diff)
downloadbitcoin-95c2ba168941958087d5dc7f1e3c9a89bb19f602.tar.xz
Merge pull request #2682 from sipa/morewalletbb
More bestblock records in wallets
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 2d22541baf..b7efac53b1 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1870,7 +1870,7 @@ bool SetBestChain(CValidationState &state, CBlockIndex* pindexNew)
}
// Update best block in wallet (so we can detect restored wallets)
- if (!fIsInitialDownload)
+ if ((pindexNew->nHeight % 20160) == 0 || (!fIsInitialDownload && (pindexNew->nHeight % 144) == 0))
{
const CBlockLocator locator(pindexNew);
::SetBestChain(locator);