diff options
author | Anditto Heristyo <anditto.heristyo@gmail.com> | 2016-12-22 13:26:03 +0900 |
---|---|---|
committer | Anditto Heristyo <anditto.heristyo@gmail.com> | 2016-12-22 13:26:03 +0900 |
commit | afe5b3f553e1d67b78fee83a18b83c322471ed00 (patch) | |
tree | a8a4c7680b678c2e778b6318ca4adfb8af40a7ef /src/rpc/rawtransaction.cpp | |
parent | e8cfe1ee2d01c493b758a67ad14707dca15792ea (diff) |
Added missing colons in when running help command
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 21af449466..8b24e7a1cd 100644 --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -377,7 +377,7 @@ UniValue createrawtransaction(const JSONRPCRequest& request) "\nResult:\n" "\"transaction\" (string) hex string of the transaction\n" - "\nExamples\n" + "\nExamples:\n" + HelpExampleCli("createrawtransaction", "\"[{\\\"txid\\\":\\\"myid\\\",\\\"vout\\\":0}]\" \"{\\\"address\\\":0.01}\"") + HelpExampleCli("createrawtransaction", "\"[{\\\"txid\\\":\\\"myid\\\",\\\"vout\\\":0}]\" \"{\\\"data\\\":\\\"00010203\\\"}\"") + HelpExampleRpc("createrawtransaction", "\"[{\\\"txid\\\":\\\"myid\\\",\\\"vout\\\":0}]\", \"{\\\"address\\\":0.01}\"") |