aboutsummaryrefslogtreecommitdiff
path: root/src/timedata.cpp
diff options
context:
space:
mode:
authorPavel Janík <Pavel@Janik.cz>2015-08-11 15:57:52 +0200
committerPavel Janík <Pavel@Janik.cz>2015-08-11 15:57:52 +0200
commit8be371db340b03dc03142c1bb3390fdfc84f56b4 (patch)
tree4e0102ec9d83e2323c84405e34e1ba28c975528f /src/timedata.cpp
parenta4fe57da6207c1e5691a1e843d22db571f3f0186 (diff)
downloadbitcoin-8be371db340b03dc03142c1bb3390fdfc84f56b4.tar.xz
Do not store more than 200 timedata samples.
Diffstat (limited to 'src/timedata.cpp')
-rw-r--r--src/timedata.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/timedata.cpp b/src/timedata.cpp
index c3e9c75f6e..a14d69c116 100644
--- a/src/timedata.cpp
+++ b/src/timedata.cpp
@@ -40,16 +40,20 @@ static int64_t abs64(int64_t n)
return (n >= 0 ? n : -n);
}
+#define BITCOIN_TIMEDATA_MAX_SAMPLES 200
+
void AddTimeData(const CNetAddr& ip, int64_t nOffsetSample)
{
LOCK(cs_nTimeOffset);
// Ignore duplicates
static set<CNetAddr> setKnown;
+ if (setKnown.size() == BITCOIN_TIMEDATA_MAX_SAMPLES)
+ return;
if (!setKnown.insert(ip).second)
return;
// Add data
- static CMedianFilter<int64_t> vTimeOffsets(200,0);
+ static CMedianFilter<int64_t> vTimeOffsets(BITCOIN_TIMEDATA_MAX_SAMPLES, 0);
vTimeOffsets.input(nOffsetSample);
LogPrintf("Added time data, samples %d, offset %+d (%+d minutes)\n", vTimeOffsets.size(), nOffsetSample, nOffsetSample/60);