diff options
| author | MarcoFalke <[email protected]> | 2018-12-04 11:59:46 -0500 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-12-04 12:06:13 -0500 |
| commit | fafd040f7321294d5e4335b9581a6bd46a714c37 (patch) | |
| tree | 773622c99501bb0412b336ae757e797cd430064d /src/wallet/rpcwallet.cpp | |
| parent | rpc: Pass argument descriptions to RPCHelpMan (diff) | |
| download | discoin-fafd040f7321294d5e4335b9581a6bd46a714c37.tar.xz discoin-fafd040f7321294d5e4335b9581a6bd46a714c37.zip | |
rpc: Add description to fundrawtransaction vout_index
Diffstat (limited to 'src/wallet/rpcwallet.cpp')
| -rw-r--r-- | src/wallet/rpcwallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 28ef0ddcd..de0778b73 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -3005,7 +3005,7 @@ static UniValue fundrawtransaction(const JSONRPCRequest& request) " Those recipients will receive less bitcoins than you enter in their corresponding amount field.\n" " If no outputs are specified here, the sender pays the fee.", { - {"vout_index", RPCArg::Type::NUM, /* opt */ true, /* default_val */ "", ""}, + {"vout_index", RPCArg::Type::NUM, /* opt */ true, /* default_val */ "", "The zero-based output index, before a change output is added."}, }, }, {"replaceable", RPCArg::Type::BOOL, /* opt */ true, /* default_val */ "", "Marks this transaction as BIP125 replaceable.\n" |