Skip to content

Commit 4ec85c5

Browse files
committed
Use proper var
1 parent 523accf commit 4ec85c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/net.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1193,10 +1193,10 @@ void CConnman::DisconnectNodes()
11931193

11941194
if (fLogIPs) {
11951195
LogPrintf("ThreadSocketHandler -- removing node: peer=%d addr=%s nRefCount=%d fInbound=%d fMasternode=%d\n",
1196-
pnode->GetId(), pnode->addr.ToString(), pnode->GetRefCount(), pnode->fInbound, fMasternode);
1196+
pnode->GetId(), pnode->addr.ToString(), pnode->GetRefCount(), pnode->fInbound, fMasterNode);
11971197
} else {
11981198
LogPrintf("ThreadSocketHandler -- removing node: peer=%d nRefCount=%d fInbound=%d fMasternode=%d\n",
1199-
pnode->GetId(), pnode->GetRefCount(), pnode->fInbound, fMasternode);
1199+
pnode->GetId(), pnode->GetRefCount(), pnode->fInbound, fMasterNode);
12001200
}
12011201

12021202
// remove from vNodes

0 commit comments

Comments
 (0)