aboutsummaryrefslogtreecommitdiff
path: root/src/rpc
diff options
context:
space:
mode:
authorMatthew Zipkin <pinheadmz@gmail.com>2020-09-04 17:21:18 -0400
committerMatthew Zipkin <pinheadmz@gmail.com>2020-09-04 17:21:18 -0400
commit4294e706909341ab5bf7d99d794434dff5c44a08 (patch)
tree669a47ac357b85f9248d9be8a5996fcdebbf7320 /src/rpc
parent23d3ae7accfc690298b1b0bac9615155f485c5ad (diff)
downloadbitcoin-4294e706909341ab5bf7d99d794434dff5c44a08.tar.xz
rawtransaction: fix argument in combinerawtransaction help message
Diffstat (limited to 'src/rpc')
-rw-r--r--src/rpc/rawtransaction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp
index d6988ee3ac..f46dee8258 100644
--- a/src/rpc/rawtransaction.cpp
+++ b/src/rpc/rawtransaction.cpp
@@ -627,7 +627,7 @@ static UniValue combinerawtransaction(const JSONRPCRequest& request)
{
{"txs", RPCArg::Type::ARR, RPCArg::Optional::NO, "The hex strings of partially signed transactions",
{
- {"hexstring", RPCArg::Type::STR_HEX, RPCArg::Optional::OMITTED, "A transaction hash"},
+ {"hexstring", RPCArg::Type::STR_HEX, RPCArg::Optional::OMITTED, "A hex-encoded raw transaction"},
},
},
},