0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-02 09:46:52 -05:00

doc: Correct nPruneTarget misidentifying units of variable

This commit is contained in:
darosior 2019-04-23 20:59:02 +02:00 committed by Ben Woosley
parent 9dae9f5f1e
commit 64f81a38b9
No known key found for this signature in database
GPG key ID: 4D8CA4BA18040906

View file

@ -49,7 +49,7 @@ extern std::atomic_bool fReindex;
/** Pruning-related variables and constants */ /** Pruning-related variables and constants */
/** True if we're running in -prune mode. */ /** True if we're running in -prune mode. */
extern bool fPruneMode; extern bool fPruneMode;
/** Number of MiB of block files that we're trying to stay below. */ /** Number of bytes of block files that we're trying to stay below. */
extern uint64_t nPruneTarget; extern uint64_t nPruneTarget;
// Because validation code takes pointers to the map's CBlockIndex objects, if // Because validation code takes pointers to the map's CBlockIndex objects, if