diff options
| author | Jon Atack <[email protected]> | 2020-09-01 17:40:32 +0200 |
|---|---|---|
| committer | Jon Atack <[email protected]> | 2020-09-01 17:46:28 +0200 |
| commit | d780293e1ee0f9e66bd2d88914694c17f9aaa0ca (patch) | |
| tree | 714450bc6ac2a180771d73f30a83acc4355b7683 /src/net.cpp | |
| parent | Merge #19668: Do not hide compile-time thread safety warnings (diff) | |
| download | discoin-d780293e1ee0f9e66bd2d88914694c17f9aaa0ca.tar.xz discoin-d780293e1ee0f9e66bd2d88914694c17f9aaa0ca.zip | |
net: improve nLastBlockTime and nLastTXTime documentation
Co-authored-by: John Newbery <[email protected]>
Diffstat (limited to 'src/net.cpp')
| -rw-r--r-- | src/net.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net.cpp b/src/net.cpp index 883e57bdf..dc34743c5 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -904,10 +904,10 @@ bool CConnman::AttemptToEvictConnection() // Protect the 8 nodes with the lowest minimum ping time. // An attacker cannot manipulate this metric without physically moving nodes closer to the target. EraseLastKElements(vEvictionCandidates, ReverseCompareNodeMinPingTime, 8); - // Protect 4 nodes that most recently sent us transactions. + // Protect 4 nodes that most recently sent us novel transactions accepted into our mempool. // An attacker cannot manipulate this metric without performing useful work. EraseLastKElements(vEvictionCandidates, CompareNodeTXTime, 4); - // Protect 4 nodes that most recently sent us blocks. + // Protect 4 nodes that most recently sent us novel blocks. // An attacker cannot manipulate this metric without performing useful work. EraseLastKElements(vEvictionCandidates, CompareNodeBlockTime, 4); // Protect the half of the remaining nodes which have been connected the longest. |