mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-13 00:28:03 +00:00
Change new constants in txdb.h to int64_t
A shift overflow was happening when using these to check against in init.cpp. Fixes #3702.
This commit is contained in:
parent
5c99323459
commit
ad54a9b83f
@ -85,7 +85,7 @@ void OptionsModel::Init()
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (!settings.contains("nDatabaseCache"))
|
if (!settings.contains("nDatabaseCache"))
|
||||||
settings.setValue("nDatabaseCache", nDefaultDbCache);
|
settings.setValue("nDatabaseCache", (qint64)nDefaultDbCache);
|
||||||
if (!SoftSetArg("-dbcache", settings.value("nDatabaseCache").toString().toStdString()))
|
if (!SoftSetArg("-dbcache", settings.value("nDatabaseCache").toString().toStdString()))
|
||||||
strOverriddenByCommandLine += "-dbcache ";
|
strOverriddenByCommandLine += "-dbcache ";
|
||||||
|
|
||||||
|
@ -19,11 +19,11 @@ class CCoins;
|
|||||||
class uint256;
|
class uint256;
|
||||||
|
|
||||||
// -dbcache default (MiB)
|
// -dbcache default (MiB)
|
||||||
static const int nDefaultDbCache = 100;
|
static const int64_t nDefaultDbCache = 100;
|
||||||
// max. -dbcache in (MiB)
|
// max. -dbcache in (MiB)
|
||||||
static const int nMaxDbCache = sizeof(void*) > 4 ? 4096 : 1024;
|
static const int64_t nMaxDbCache = sizeof(void*) > 4 ? 4096 : 1024;
|
||||||
// min. -dbcache in (MiB)
|
// min. -dbcache in (MiB)
|
||||||
static const int nMinDbCache = 4;
|
static const int64_t nMinDbCache = 4;
|
||||||
|
|
||||||
/** CCoinsView backed by the LevelDB coin database (chainstate/) */
|
/** CCoinsView backed by the LevelDB coin database (chainstate/) */
|
||||||
class CCoinsViewDB : public CCoinsView
|
class CCoinsViewDB : public CCoinsView
|
||||||
|
Loading…
Reference in New Issue
Block a user