diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-11-26 11:20:33 -0500 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-11-26 11:20:35 -0500 |
commit | b5c3d7affc9890f13dbd2d13967238f798d984a3 (patch) | |
tree | 63779dd2ac0a94c153f333c788a0fdd690f4053b | |
parent | 327129f7a6440e3bbd0a0ea415ea5f8907cf3233 (diff) | |
parent | 848077f94de001579d5c04df6198d110c68bf24b (diff) |
Merge #14808: doc: clarify RPC rawtransaction documentation
848077f94d clarify RPC rawtransaction documentation (Jameson Lopp)
Pull request description:
Fixing an RPC documentation typo and clarifying the wording of the testmempoolaccept function.
Tree-SHA512: 495c05ba322d0747ff569d02f5d2ad7d94b5542049c82091f5e74d8d02a8af408f31e10b112ca20d506125e3b39703ec3169f3a446f09ecae3cd46148ffc4041
-rw-r--r-- | src/rpc/rawtransaction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp index a3ed4e86d9..41f3ac6b4a 100644 --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -939,7 +939,7 @@ static UniValue signrawtransactionwithkey(const JSONRPCRequest& request) "this transaction depends on but may not yet be in the block chain.\n", { {"hexstring", RPCArg::Type::STR, false}, - {"privkyes", RPCArg::Type::ARR, + {"privkeys", RPCArg::Type::ARR, { {"privatekey", RPCArg::Type::STR_HEX, false}, }, @@ -1142,7 +1142,7 @@ static UniValue testmempoolaccept(const JSONRPCRequest& request) throw std::runtime_error( // clang-format off "testmempoolaccept [\"rawtxs\"] ( allowhighfees )\n" - "\nReturns if raw transaction (serialized, hex-encoded) would be accepted by mempool.\n" + "\nReturns result of mempool acceptance tests indicating if raw transaction (serialized, hex-encoded) would be accepted by mempool.\n" "\nThis checks if the transaction violates the consensus or policy rules.\n" "\nSee sendrawtransaction call.\n" "\nArguments:\n" |