Bump few consts (#2096)

* bump BLOCK_CHAIN_SIZE

* bump nMinBlocksToStore default
This commit is contained in:
UdjinM6 2018-06-06 10:59:25 +03:00 committed by GitHub
parent dbbedc031c
commit 9299a84b1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -192,7 +192,7 @@ public:
std::map<COutPoint, int> mapMasternodesLastVote; std::map<COutPoint, int> mapMasternodesLastVote;
std::map<COutPoint, int> mapMasternodesDidNotVote; std::map<COutPoint, int> mapMasternodesDidNotVote;
CMasternodePayments() : nStorageCoeff(1.25), nMinBlocksToStore(5000) {} CMasternodePayments() : nStorageCoeff(1.25), nMinBlocksToStore(6000) {}
ADD_SERIALIZE_METHODS; ADD_SERIALIZE_METHODS;

View File

@ -24,7 +24,7 @@
static const uint64_t GB_BYTES = 1000000000LL; static const uint64_t GB_BYTES = 1000000000LL;
/* Minimum free space (in GB) needed for data directory */ /* Minimum free space (in GB) needed for data directory */
static const uint64_t BLOCK_CHAIN_SIZE = 1; static const uint64_t BLOCK_CHAIN_SIZE = 10;
/* Minimum free space (in GB) needed for data directory when pruned; Does not include prune target */ /* Minimum free space (in GB) needed for data directory when pruned; Does not include prune target */
static const uint64_t CHAIN_STATE_SIZE = 1; static const uint64_t CHAIN_STATE_SIZE = 1;
/* Total required space (in GB) depending on user choice (prune, not prune) */ /* Total required space (in GB) depending on user choice (prune, not prune) */