RPC getnetworkinfo: export local node's client sub-version string
This commit is contained in:
parent
c4998661e4
commit
ff36cbe8d0
1 changed files with 3 additions and 0 deletions
|
@ -11,6 +11,7 @@
|
|||
#include "sync.h"
|
||||
#include "timedata.h"
|
||||
#include "util.h"
|
||||
#include "version.h"
|
||||
|
||||
#include <boost/foreach.hpp>
|
||||
|
||||
|
@ -393,6 +394,8 @@ Value getnetworkinfo(const Array& params, bool fHelp)
|
|||
|
||||
Object obj;
|
||||
obj.push_back(Pair("version", (int)CLIENT_VERSION));
|
||||
obj.push_back(Pair("subversion",
|
||||
FormatSubVersion(CLIENT_NAME, CLIENT_VERSION, std::vector<string>())));
|
||||
obj.push_back(Pair("protocolversion",(int)PROTOCOL_VERSION));
|
||||
obj.push_back(Pair("localservices", strprintf("%016x", nLocalServices)));
|
||||
obj.push_back(Pair("timeoffset", GetTimeOffset()));
|
||||
|
|
Loading…
Reference in a new issue