doc: Add documentation for 'checklevel' argument in 'verifychain' RPC call

This commit is contained in:
Calvin Kim
2020-05-30 21:52:47 +09:00
parent 76e64525ff
commit 501e6ab4e7
4 changed files with 14 additions and 9 deletions

View File

@@ -29,6 +29,7 @@
#include <memory>
#include <set>
#include <stdint.h>
#include <string>
#include <utility>
#include <vector>
@@ -149,6 +150,8 @@ extern bool fHavePruned;
extern bool fPruneMode;
/** Number of MiB of block files that we're trying to stay below. */
extern uint64_t nPruneTarget;
/** Documentation for argument 'checklevel'. */
extern const std::vector<std::string> CHECKLEVEL_DOC;
/** Open a block file (blk?????.dat) */
FILE* OpenBlockFile(const FlatFilePos &pos, bool fReadOnly = false);