diff options
| author | Calvin Kim <[email protected]> | 2020-05-30 21:52:47 +0900 |
|---|---|---|
| committer | Calvin Kim <[email protected]> | 2020-06-07 17:50:22 +0900 |
| commit | 501e6ab4e778d8f4e95fdc807eeb8644df16203b (patch) | |
| tree | d62143ee1b4c872af37d43e9f435523bfafe3b71 /src/validation.h | |
| parent | Merge #19159: test: Make valgrind.supp work on aarch64 (diff) | |
| download | discoin-501e6ab4e778d8f4e95fdc807eeb8644df16203b.tar.xz discoin-501e6ab4e778d8f4e95fdc807eeb8644df16203b.zip | |
doc: Add documentation for 'checklevel' argument in 'verifychain' RPC call
Diffstat (limited to 'src/validation.h')
| -rw-r--r-- | src/validation.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/validation.h b/src/validation.h index 8112e3870..e403bcb51 100644 --- a/src/validation.h +++ b/src/validation.h @@ -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); |