diff --git a/src/timedata.cpp b/src/timedata.cpp index 59f7778db..fdb702a35 100644 --- a/src/timedata.cpp +++ b/src/timedata.cpp @@ -77,7 +77,7 @@ void AddTimeData(const CNetAddr& ip, int64_t nTime) int64_t nMedian = vTimeOffsets.median(); std::vector vSorted = vTimeOffsets.sorted(); // Only let other nodes change our time by so much - if (abs64(nMedian) < 70 * 60) + if (abs64(nMedian) < 35 * 60) { nTimeOffset = nMedian; }