diff options
author | MarcoFalke <falke.marco@gmail.com> | 2017-08-11 15:30:01 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2017-08-11 15:30:14 +0200 |
commit | 96a63a3e0cefe920819bd42add0041837b1214a1 (patch) | |
tree | 494ff9f810452872a442d032307e5b915d3c2165 | |
parent | e526ca6284b9e13be1b912b80dd73a34e739b539 (diff) | |
parent | 86279464b4ea207dfb2d978491ce80b849968105 (diff) |
Merge #11029: [RPC] trivial: gettxout no longer shows version of tx
86279464b [RPC] trivial: gettxout no longer shows version of tx (Felix Weis)
Pull request description:
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.
Tree-SHA512: 3d7f42ef0f649056ece98bf22a1e972d1876324733adc81fa31bc2cd160550c5b6cb8682209fb8e8dbc56a8139ed5f5f0e740945f709039e69d52997ddbca7b8
-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" |