Skip to content

Commit

Permalink
[P2P] Do not store more than 200 timedata samples.
Browse files Browse the repository at this point in the history
Backport of bitcoin#6545
  • Loading branch information
random-zebra committed Nov 20, 2019
1 parent 8ca3979 commit c254df6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/timedata.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,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 std::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);

Expand Down

0 comments on commit c254df6

Please sign in to comment.