diff options
| author | Ben Carman <[email protected]> | 2018-12-17 07:40:45 -0600 |
|---|---|---|
| committer | Ben Carman <[email protected]> | 2018-12-17 11:04:40 -0600 |
| commit | 84104c781ad8df29192ec7cf3b09ed8efe2cf175 (patch) | |
| tree | b3f1cf63df85c77350a6ab22bf3085387849c20e /src/rpc/rawtransaction.cpp | |
| parent | Merge #14964: test: Fix race in mempool_accept (diff) | |
| download | discoin-84104c781ad8df29192ec7cf3b09ed8efe2cf175.tar.xz discoin-84104c781ad8df29192ec7cf3b09ed8efe2cf175.zip | |
clarifying getrawtransaction[time] get help text
Diffstat (limited to 'src/rpc/rawtransaction.cpp')
| -rw-r--r-- | src/rpc/rawtransaction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp index 370ae8e4d..9e00665a6 100644 --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -130,8 +130,8 @@ static UniValue getrawtransaction(const JSONRPCRequest& request) " ],\n" " \"blockhash\" : \"hash\", (string) the block hash\n" " \"confirmations\" : n, (numeric) The confirmations\n" - " \"time\" : ttt, (numeric) The transaction time in seconds since epoch (Jan 1 1970 GMT)\n" " \"blocktime\" : ttt (numeric) The block time in seconds since epoch (Jan 1 1970 GMT)\n" + " \"time\" : ttt, (numeric) Same as \"blocktime\"\n" "}\n" "\nExamples:\n" |