aboutsummaryrefslogtreecommitdiff
path: root/src/addrman_impl.h
diff options
context:
space:
mode:
authorJohn Newbery <john@johnnewbery.com>2021-10-01 17:15:46 +0100
committerJohn Newbery <john@johnnewbery.com>2021-10-28 12:52:27 +0100
commit2658eb6d68460272deefb3fcc653b03f6ec6e7cf (patch)
tree1056a3ef4e7132d91a30bc1c3bd3d8f7f536079b /src/addrman_impl.h
parente58598e833d5737900fe3c4369e26f2a08166892 (diff)
downloadbitcoin-2658eb6d68460272deefb3fcc653b03f6ec6e7cf.tar.xz
[addrman] Rename Add_() to AddSingle()
Diffstat (limited to 'src/addrman_impl.h')
-rw-r--r--src/addrman_impl.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/addrman_impl.h b/src/addrman_impl.h
index f8191d6b85..2d01881f2e 100644
--- a/src/addrman_impl.h
+++ b/src/addrman_impl.h
@@ -244,7 +244,9 @@ private:
void Good_(const CService& addr, bool test_before_evict, int64_t time) EXCLUSIVE_LOCKS_REQUIRED(cs);
- bool Add_(const CAddress& addr, const CNetAddr& source, int64_t nTimePenalty) EXCLUSIVE_LOCKS_REQUIRED(cs);
+ /** Attempt to add a single address to addrman's new table.
+ * @see AddrMan::Add() for parameters. */
+ bool AddSingle(const CAddress& addr, const CNetAddr& source, int64_t nTimePenalty) EXCLUSIVE_LOCKS_REQUIRED(cs);
void Attempt_(const CService& addr, bool fCountFailure, int64_t nTime) EXCLUSIVE_LOCKS_REQUIRED(cs);