diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-04-30 07:20:04 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-04-30 07:20:14 -0400 |
commit | 00c1a4d9a95eaead64508ee2a7625bdc67e65fa3 (patch) | |
tree | a561bb747fc61f584664069bedcc4adba03c8924 /src | |
parent | cf5e3be5ea74560894d1c4fe982cfbae3504524a (diff) | |
parent | fac0cf6e5513df1402068df113d496b4e03a4bdc (diff) |
Merge #18809: rpc: Do not advertise dumptxoutset as a way to flush the chainstate
fac0cf6e5513df1402068df113d496b4e03a4bdc rpc: Do not advertise dumptxoutset as a way to flush the chainstate (MarcoFalke)
Pull request description:
The help message leaks several implementation details: leveldb and flush.
Neither of them are relevant to the end user and I don't see why we should make them part of the API contract.
ACKs for top commit:
laanwj:
ACK fac0cf6e5513df1402068df113d496b4e03a4bdc
Tree-SHA512: 273fb85dc5be6cdccf17c43f183fa83c57d0a1cbb30555838f32c074218b713a753930009f6c98c85659421f2285f09c0a713b22f7e34d446e56737ac03870f7
Diffstat (limited to 'src')
-rw-r--r-- | src/rpc/blockchain.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index 827b83d67e..f7ccbae706 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -2242,8 +2242,7 @@ UniValue dumptxoutset(const JSONRPCRequest& request) { RPCHelpMan{ "dumptxoutset", - "\nWrite the serialized UTXO set to disk.\n" - "Incidentally flushes the latest coinsdb (leveldb) to disk.\n", + "\nWrite the serialized UTXO set to disk.\n", { {"path", RPCArg::Type::STR, |