diff options
author | MarcoFalke <falke.marco@gmail.com> | 2022-01-02 10:55:37 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2022-01-02 10:53:49 +0100 |
commit | faa9e461ab3cdec61d8428621fb3adc76e964415 (patch) | |
tree | 4bafae2f84a48b5280d0e2ab51b16fe576f66b8c /src/rpc/blockchain.cpp | |
parent | 8b5a4de904b414fb3a818732cd0a2c90b91bc275 (diff) |
doc: Fix dumptxoutset RPC help doc
Diffstat (limited to 'src/rpc/blockchain.cpp')
-rw-r--r-- | src/rpc/blockchain.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index 689879ae97..25a80bf2f8 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -2576,13 +2576,9 @@ static RPCHelpMan dumptxoutset() { return RPCHelpMan{ "dumptxoutset", - "\nWrite the serialized UTXO set to disk.\n", + "Write the serialized UTXO set to disk.", { - {"path", - RPCArg::Type::STR, - RPCArg::Optional::NO, - /* default_val */ "", - "path to the output file. If relative, will be prefixed by datadir."}, + {"path", RPCArg::Type::STR, RPCArg::Optional::NO, "Path to the output file. If relative, will be prefixed by datadir."}, }, RPCResult{ RPCResult::Type::OBJ, "", "", |