diff options
| author | Masahiko Hyuga <[email protected]> | 2016-11-10 18:18:52 +0900 |
|---|---|---|
| committer | Masahiko Hyuga <[email protected]> | 2016-11-10 18:18:52 +0900 |
| commit | a79f864945d7abe05e777a942864c181311e5070 (patch) | |
| tree | 4b0a49a76f5280c90de73092788fc3ecc00d979c /src/rpc/net.cpp | |
| parent | Merge #8894: [Testing] Include fRelay in mininode version messages (diff) | |
| download | discoin-a79f864945d7abe05e777a942864c181311e5070.tar.xz discoin-a79f864945d7abe05e777a942864c181311e5070.zip | |
fix getnettotals RPC description about timemillis.
Diffstat (limited to 'src/rpc/net.cpp')
| -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 2b43f08f0..bd68abdbb 100644 --- a/src/rpc/net.cpp +++ b/src/rpc/net.cpp @@ -331,7 +331,7 @@ UniValue getnettotals(const JSONRPCRequest& request) "{\n" " \"totalbytesrecv\": n, (numeric) Total bytes received\n" " \"totalbytessent\": n, (numeric) Total bytes sent\n" - " \"timemillis\": t, (numeric) Total cpu time\n" + " \"timemillis\": t, (numeric) Current UNIX time in milliseconds\n" " \"uploadtarget\":\n" " {\n" " \"timeframe\": n, (numeric) Length of the measuring timeframe in seconds\n" |