mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 10:43:19 -03:00
Switch nPrevNodeCount to vNodesSize.
These both have the same value, but the variable naming is confusing.
This commit is contained in:
parent
59ecacfc84
commit
83d53058ae
1 changed files with 1 additions and 1 deletions
|
@ -1227,7 +1227,7 @@ void CConnman::ThreadSocketHandler()
|
|||
if(vNodesSize != nPrevNodeCount) {
|
||||
nPrevNodeCount = vNodesSize;
|
||||
if(clientInterface)
|
||||
clientInterface->NotifyNumConnectionsChanged(nPrevNodeCount);
|
||||
clientInterface->NotifyNumConnectionsChanged(vNodesSize);
|
||||
}
|
||||
|
||||
//
|
||||
|
|
Loading…
Add table
Reference in a new issue