aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2021-11-30 16:03:55 +0100
committerMarcoFalke <falke.marco@gmail.com>2021-11-30 17:19:49 +0100
commitfa551b3bdd380bcaa8fa929b378b3b6c81a6f65c (patch)
treec273f4d3f26d2bc918d1d2d9c733e908cc6dd47d /src
parentfa815f8473c56df66302340c5961d18226a60e6f (diff)
downloadbitcoin-fa551b3bdd380bcaa8fa929b378b3b6c81a6f65c.tar.xz
Remove GetAdjustedTime from init.cpp
Diffstat (limited to 'src')
-rw-r--r--src/init.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp
index d5c3acbaad..22c0d928b5 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -1561,7 +1561,7 @@ bool AppInitMain(NodeContext& node, interfaces::BlockAndHeaderTipInfo* tip_info)
const CBlockIndex* tip = chainstate->m_chain.Tip();
RPCNotifyBlockChange(tip);
- if (tip && tip->nTime > GetAdjustedTime() + 2 * 60 * 60) {
+ if (tip && tip->nTime > GetTime() + MAX_FUTURE_BLOCK_TIME) {
strLoadError = _("The block database contains a block which appears to be from the future. "
"This may be due to your computer's date and time being set incorrectly. "
"Only rebuild the block database if you are sure that your computer's date and time are correct");