diff options
| author | Ben Carman <[email protected]> | 2020-12-21 09:57:06 -0600 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-12-21 20:01:02 +0100 |
| commit | 1fda7db64f0f30c23724f6db14f8a49d3975c716 (patch) | |
| tree | 9d926f4ce2f1866519ad1fb18a0ececb9275b45a /src/rpc/rawtransaction.cpp | |
| parent | qt: Align layout of checkboxes (diff) | |
| download | discoin-1fda7db64f0f30c23724f6db14f8a49d3975c716.tar.xz discoin-1fda7db64f0f30c23724f6db14f8a49d3975c716.zip | |
rpc: Add missing description of vout in getrawtransaction help text
Github-Pull: #20731
Rebased-From: b23349b8804fb60c6b3d7d0e2a95927a0d1b49b9
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 c6d7fea44..70f9279b2 100644 --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -109,7 +109,7 @@ static RPCHelpMan getrawtransaction() {RPCResult::Type::OBJ, "", "", { {RPCResult::Type::STR_HEX, "txid", "The transaction id"}, - {RPCResult::Type::STR, "vout", ""}, + {RPCResult::Type::NUM, "vout", "The output number"}, {RPCResult::Type::OBJ, "scriptSig", "The script", { {RPCResult::Type::STR, "asm", "asm"}, |