diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2018-03-09 12:12:43 +0800 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2018-03-11 12:37:20 +0800 |
commit | 386a6b62a8a1db9dd0f354cb95b7585f555c7e5d (patch) | |
tree | 4179dce98f66712dd2f266ed0568b8911cbf8831 /src/validation.h | |
parent | ed6ae8059cdbad60466807a7cfb23e5540a50051 (diff) |
Allow to optional specify the directory for the blocks storage
Diffstat (limited to 'src/validation.h')
-rw-r--r-- | src/validation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/validation.h b/src/validation.h index 99cbfdf1ee..ba7a018ec3 100644 --- a/src/validation.h +++ b/src/validation.h @@ -254,7 +254,7 @@ bool ProcessNewBlock(const CChainParams& chainparams, const std::shared_ptr<cons bool ProcessNewBlockHeaders(const std::vector<CBlockHeader>& block, CValidationState& state, const CChainParams& chainparams, const CBlockIndex** ppindex=nullptr, CBlockHeader *first_invalid=nullptr); /** Check whether enough disk space is available for an incoming block */ -bool CheckDiskSpace(uint64_t nAdditionalBytes = 0); +bool CheckDiskSpace(uint64_t nAdditionalBytes = 0, bool blocks_dir = false); /** Open a block file (blk?????.dat) */ FILE* OpenBlockFile(const CDiskBlockPos &pos, bool fReadOnly = false); /** Translation to a filesystem path */ |