diff options
author | Ben Carman <benthecarman@live.com> | 2020-12-21 09:57:06 -0600 |
---|---|---|
committer | Ben Carman <benthecarman@live.com> | 2020-12-21 09:57:06 -0600 |
commit | b23349b8804fb60c6b3d7d0e2a95927a0d1b49b9 (patch) | |
tree | 08cfedec13e5c2d42c5156d17e93713aad7fa51a | |
parent | 6a48063671770e77266f8e441cc15487d1fff5ed (diff) |
rpc: Add missing description of vout in getrawtransaction help text
-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 f6ddaf379b..e2897549b5 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"}, |