diff options
author | MarcoFalke <falke.marco@gmail.com> | 2016-11-10 11:05:56 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2016-11-10 11:05:59 +0100 |
commit | 4a2b170c075ce703cbdc82519a48016a9ee3f99c (patch) | |
tree | 76cd7b3ab68ea12d3950efdeeaf9a67e182f0d47 /src | |
parent | aab102cbae6b16312f79a7d85e7b69245200f84e (diff) | |
parent | a79f864945d7abe05e777a942864c181311e5070 (diff) |
Merge #9122: fix getnettotals RPC description about timemillis.
a79f864 fix getnettotals RPC description about timemillis. (Masahiko Hyuga)
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 2b43f08f0b..bd68abdbb8 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" |