aboutsummaryrefslogtreecommitdiff
path: root/src/addrman.h
diff options
context:
space:
mode:
authorJohn Newbery <john@johnnewbery.com>2021-07-20 13:59:12 +0100
committerJohn Newbery <john@johnnewbery.com>2021-07-20 16:17:51 +0100
commitf036dfbb692c4d44d0f59194d089ed0aa1096347 (patch)
treecc43da695b6d50e075d981064c29290a9735faa5 /src/addrman.h
parent201c5e4aec5210b258644ff96379cda0ca7273ab (diff)
downloadbitcoin-f036dfbb692c4d44d0f59194d089ed0aa1096347.tar.xz
[addrman] Remove unused test_before_evict argument from Good()
This has never been used in the public interface method since it was introduced in #9037.
Diffstat (limited to 'src/addrman.h')
-rw-r--r--src/addrman.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/addrman.h b/src/addrman.h
index 6f081b8dc1..1fc64ac07f 100644
--- a/src/addrman.h
+++ b/src/addrman.h
@@ -536,12 +536,12 @@ public:
}
//! Mark an entry as accessible.
- void Good(const CService &addr, bool test_before_evict = true, int64_t nTime = GetAdjustedTime())
+ void Good(const CService &addr, int64_t nTime = GetAdjustedTime())
EXCLUSIVE_LOCKS_REQUIRED(!cs)
{
LOCK(cs);
Check();
- Good_(addr, test_before_evict, nTime);
+ Good_(addr, /* test_before_evict */ true, nTime);
Check();
}