diff options
| author | Wladimir J. van der Laan <[email protected]> | 2018-02-27 15:56:25 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2018-02-27 15:56:35 +0100 |
| commit | 9e2ed253f50500e1db4927d511d3ac0d47aed8df (patch) | |
| tree | 0b9ccf6841c24a956656482c77d53d390bb53393 /src | |
| parent | Merge #12083: Improve getchaintxstats test coverage (diff) | |
| parent | fix version typo (diff) | |
| download | discoin-9e2ed253f50500e1db4927d511d3ac0d47aed8df.tar.xz discoin-9e2ed253f50500e1db4927d511d3ac0d47aed8df.zip | |
Merge #12556: [Trivial] fix version typo in getpeerinfo RPC call help
d16bfaa fix version typo (Tamas Blummer)
Pull request description:
RPC getpeeerinfo help output uses non-existent protocol version 7001. Changed to 70001.
Tree-SHA512: aea634d739b51bf26e3f871e8bf2bf812eb62a5d87008ead3ed27ec8bd9b753ad0a958eb21f580e505d7f2b36d60e5d9901dc8e0d25f34b7ef9533fddc898844
Diffstat (limited to 'src')
| -rw-r--r-- | src/rpc/net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/net.cpp b/src/rpc/net.cpp index 7a0225ff0..fee2b765b 100644 --- a/src/rpc/net.cpp +++ b/src/rpc/net.cpp @@ -89,7 +89,7 @@ UniValue getpeerinfo(const JSONRPCRequest& request) " \"pingtime\": n, (numeric) ping time (if available)\n" " \"minping\": n, (numeric) minimum observed ping time (if any at all)\n" " \"pingwait\": n, (numeric) ping wait (if non-zero)\n" - " \"version\": v, (numeric) The peer version, such as 7001\n" + " \"version\": v, (numeric) The peer version, such as 70001\n" " \"subver\": \"/Satoshi:0.8.5/\", (string) The string version\n" " \"inbound\": true|false, (boolean) Inbound (true) or Outbound (false)\n" " \"addnode\": true|false, (boolean) Whether connection was due to addnode/-connect or if it was an automatic/inbound connection\n" |