diff --git a/src/wallet/rpcdump.cpp b/src/wallet/rpcdump.cpp index 34f5557c1..9874eab4f 100644 --- a/src/wallet/rpcdump.cpp +++ b/src/wallet/rpcdump.cpp @@ -547,6 +547,7 @@ UniValue dumpwallet(const UniValue& params, bool fHelp) if (fHelp || params.size() != 1) throw runtime_error( "dumpwallet \"filename\"\n" + "\nDEPRECATED. Please use the z_exportwallet RPC instead.\n" "\nDumps taddr wallet keys in a human-readable format. Overwriting an existing file is not permitted.\n" "\nArguments:\n" "1. \"filename\" (string, required) The filename, saved in folder set by zcashd -exportdir option\n" diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 502ff71eb..00036b6b4 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -3916,6 +3916,7 @@ UniValue z_gettotalbalance(const UniValue& params, bool fHelp) if (fHelp || params.size() > 2) throw runtime_error( "z_gettotalbalance ( minconf includeWatchonly )\n" + "\nDEPRECATED. Please use the z_getbalanceforaccount RPC instead.\n" "\nReturn the total value of funds stored in the node's wallet.\n" "\nCAUTION: If the wallet contains any addresses for which it only has incoming viewing keys," "\nthe returned private balance may be larger than the actual balance, because spends cannot"