diff options
| author | Gregory Sanders <[email protected]> | 2017-06-26 23:34:25 -0400 |
|---|---|---|
| committer | Gregory Sanders <[email protected]> | 2017-06-27 08:39:16 -0400 |
| commit | 73041c3c996ad774f723f868d5b4dbb7acabe129 (patch) | |
| tree | 5504ec3c186fae2d8714811b064267fe7188beaa | |
| parent | Merge #10565: [coverage] Remove subtrees and benchmarks from coverage report (diff) | |
| download | discoin-73041c3c996ad774f723f868d5b4dbb7acabe129.tar.xz discoin-73041c3c996ad774f723f868d5b4dbb7acabe129.zip | |
RPC Docs: addmultisigaddress is intended for non-watchonly addresses
| -rw-r--r-- | src/wallet/rpcwallet.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 5bbb5088e..c3712fbf1 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -1015,6 +1015,8 @@ UniValue addmultisigaddress(const JSONRPCRequest& request) std::string msg = "addmultisigaddress nrequired [\"key\",...] ( \"account\" )\n" "\nAdd a nrequired-to-sign multisignature address to the wallet.\n" "Each key is a Bitcoin address or hex-encoded public key.\n" + "This functionality is only intended for use with non-watchonly addresses.\n" + "See `importaddress` for watchonly p2sh address support.\n" "If 'account' is specified (DEPRECATED), assign address to that account.\n" "\nArguments:\n" |