diff options
| author | MarcoFalke <[email protected]> | 2020-04-26 20:24:49 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-04-26 20:22:42 -0400 |
| commit | fa501700e91b8667d4d2f116c3705e3ab9a1c8c3 (patch) | |
| tree | 5ee1d7dca49ba353306bc9f9dea86e7e813ca532 | |
| parent | Merge #18669: log: Use Join() helper when listing log categories (diff) | |
| download | discoin-fa501700e91b8667d4d2f116c3705e3ab9a1c8c3.tar.xz discoin-fa501700e91b8667d4d2f116c3705e3ab9a1c8c3.zip | |
wallet: Recommned absolute path for dumpwallet
| -rw-r--r-- | src/wallet/rpcdump.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/rpcdump.cpp b/src/wallet/rpcdump.cpp index 86e4e0667..0733ba2cd 100644 --- a/src/wallet/rpcdump.cpp +++ b/src/wallet/rpcdump.cpp @@ -735,7 +735,7 @@ UniValue dumpwallet(const JSONRPCRequest& request) "Note that if your wallet contains keys which are not derived from your HD seed (e.g. imported keys), these are not covered by\n" "only backing up the seed itself, and must be backed up too (e.g. ensure you back up the whole dumpfile).\n", { - {"filename", RPCArg::Type::STR, RPCArg::Optional::NO, "The filename with path (either absolute or relative to bitcoind)"}, + {"filename", RPCArg::Type::STR, RPCArg::Optional::NO, "The filename with path (absolute path recommended)"}, }, RPCResult{ RPCResult::Type::OBJ, "", "", |