Merge pull request #3682

3e0753b always show syncnode in getpeerinfo (fixes #2717) (Philip Kaufmann)
This commit is contained in:
Wladimir J. van der Laan 2014-03-27 11:20:43 +01:00
commit 77eaa6fc45
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
1 changed files with 1 additions and 2 deletions

View File

@ -138,8 +138,7 @@ Value getpeerinfo(const Array& params, bool fHelp)
if (fStateStats) {
obj.push_back(Pair("banscore", statestats.nMisbehavior));
}
if (stats.fSyncNode)
obj.push_back(Pair("syncnode", true));
obj.push_back(Pair("syncnode", stats.fSyncNode));
ret.push_back(obj);
}