File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -173,11 +173,10 @@ static const int64_t ADDRMAN_TEST_WINDOW = 40*60; // 40 minutes
173
173
class CAddrMan
174
174
{
175
175
friend class CAddrManTest ;
176
- protected :
176
+ private :
177
177
// ! critical section to protect the inner data structures
178
178
mutable RecursiveMutex cs;
179
179
180
- private:
181
180
// ! Serialization versions.
182
181
enum Format : uint8_t {
183
182
V0_HISTORICAL = 0 , // !< historic format, before commit e6b343d88
@@ -237,6 +236,7 @@ friend class CAddrManTest;
237
236
// ! Source of random numbers for randomization in inner loops
238
237
FastRandomContext insecure_rand;
239
238
239
+ private:
240
240
// ! Find an entry.
241
241
CAddrInfo* Find (const CNetAddr& addr, int *pnId = nullptr ) EXCLUSIVE_LOCKS_REQUIRED(cs);
242
242
You can’t perform that action at this time.
0 commit comments