diff options
author | Felix Weis <mail@felixweis.com> | 2017-08-11 12:16:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-11 12:16:55 +0800 |
commit | 86279464b4ea207dfb2d978491ce80b849968105 (patch) | |
tree | 494ff9f810452872a442d032307e5b915d3c2165 | |
parent | e526ca6284b9e13be1b912b80dd73a34e739b539 (diff) |
[RPC] trivial: gettxout no longer shows version of tx
Since the switch to a per-txout chainstate db in #10195, the tx version information is no longer stored. Updated `gettxout` rpc help text accordingly.
-rw-r--r-- | src/rpc/blockchain.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index d65e107e3c..607262f770 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -962,7 +962,6 @@ UniValue gettxout(const JSONRPCRequest& request) " ,...\n" " ]\n" " },\n" - " \"version\" : n, (numeric) The version\n" " \"coinbase\" : true|false (boolean) Coinbase or not\n" "}\n" |