Merge pull request #3682
3e0753b
always show syncnode in getpeerinfo (fixes #2717) (Philip Kaufmann)
This commit is contained in:
commit
77eaa6fc45
1 changed files with 1 additions and 2 deletions
|
@ -138,8 +138,7 @@ Value getpeerinfo(const Array& params, bool fHelp)
|
||||||
if (fStateStats) {
|
if (fStateStats) {
|
||||||
obj.push_back(Pair("banscore", statestats.nMisbehavior));
|
obj.push_back(Pair("banscore", statestats.nMisbehavior));
|
||||||
}
|
}
|
||||||
if (stats.fSyncNode)
|
obj.push_back(Pair("syncnode", stats.fSyncNode));
|
||||||
obj.push_back(Pair("syncnode", true));
|
|
||||||
|
|
||||||
ret.push_back(obj);
|
ret.push_back(obj);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue