diff options
| author | Gregory Maxwell <[email protected]> | 2014-02-22 14:37:30 -0800 |
|---|---|---|
| committer | Gregory Maxwell <[email protected]> | 2014-02-22 14:37:30 -0800 |
| commit | f42085d3130c107aaa68e3f8bce2a99105a81660 (patch) | |
| tree | 5adf2c14ac28c10efbb260bea7cbeb801c06a699 /src | |
| parent | Merge pull request #3720 (diff) | |
| parent | Make the signrawtransaction docs explicit that the arguments can be 'null'. (diff) | |
| download | discoin-f42085d3130c107aaa68e3f8bce2a99105a81660.tar.xz discoin-f42085d3130c107aaa68e3f8bce2a99105a81660.zip | |
Merge pull request #3731 from gmaxwell/signrawnulldocs
Make the signrawtransaction docs explicit that the arguments can be 'null'
Diffstat (limited to 'src')
| -rw-r--r-- | src/rpcrawtransaction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rpcrawtransaction.cpp b/src/rpcrawtransaction.cpp index e2bdc80ae..837aee7ea 100644 --- a/src/rpcrawtransaction.cpp +++ b/src/rpcrawtransaction.cpp @@ -522,7 +522,7 @@ Value signrawtransaction(const Array& params, bool fHelp) "\nArguments:\n" "1. \"hexstring\" (string, required) The transaction hex string\n" "2. \"prevtxs\" (string, optional) An json array of previous dependent transaction outputs\n" - " [ (json array of json objects)\n" + " [ (json array of json objects, or 'null' if none provided)\n" " {\n" " \"txid\":\"id\", (string, required) The transaction id\n" " \"vout\":n, (numeric, required) The output number\n" @@ -532,7 +532,7 @@ Value signrawtransaction(const Array& params, bool fHelp) " ,...\n" " ]\n" "3. \"privatekeys\" (string, optional) A json array of base58-encoded private keys for signing\n" - " [ (json array of strings)\n" + " [ (json array of strings, or 'null' if none provided)\n" " \"privatekey\" (string) private key in base58-encoding\n" " ,...\n" " ]\n" |