[net] remove CConnman::MarkAddressGood

It just forwards calls to CAddrMan::Good.
This commit is contained in:
John Newbery
2020-10-23 10:20:48 +01:00
parent 8073673dbc
commit bcd7f30b79
4 changed files with 1 additions and 14 deletions

View File

@@ -2476,7 +2476,7 @@ void PeerManagerImpl::ProcessMessage(CNode& pfrom, const std::string& msg_type,
//
// This moves an address from New to Tried table in Addrman,
// resolves tried-table collisions, etc.
m_connman.MarkAddressGood(pfrom.addr);
m_addrman.Good(pfrom.addr);
}
std::string remoteAddr;