Bugfix: increase score, not port
This commit is contained in:
parent
3588c91c7e
commit
af4da4be3d
1 changed files with 2 additions and 2 deletions
|
@ -233,8 +233,8 @@ bool AddLocal(const CService& addr, int nScore)
|
|||
bool fAlready = mapLocalHost.count(addr) > 0;
|
||||
LocalServiceInfo &info = mapLocalHost[addr];
|
||||
if (!fAlready || nScore >= info.nScore) {
|
||||
info.nScore = nScore;
|
||||
info.nPort = addr.GetPort() + (fAlready ? 1 : 0);
|
||||
info.nScore = nScore + (fAlready ? 1 : 0);
|
||||
info.nPort = addr.GetPort();
|
||||
}
|
||||
SetReachable(addr.GetNetwork());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue