diff options
| author | MarcoFalke <[email protected]> | 2016-11-10 11:05:56 +0100 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2016-11-10 11:05:59 +0100 |
| commit | 4a2b170c075ce703cbdc82519a48016a9ee3f99c (patch) | |
| tree | 76cd7b3ab68ea12d3950efdeeaf9a67e182f0d47 /src/rpc/net.cpp | |
| parent | Merge #9121: Initialize variable to prevent compiler warning (diff) | |
| parent | fix getnettotals RPC description about timemillis. (diff) | |
| download | discoin-4a2b170c075ce703cbdc82519a48016a9ee3f99c.tar.xz discoin-4a2b170c075ce703cbdc82519a48016a9ee3f99c.zip | |
Merge #9122: fix getnettotals RPC description about timemillis.
a79f864 fix getnettotals RPC description about timemillis. (Masahiko Hyuga)
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" |