mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-12-22 22:18:53 +00:00
Replace hardcoded value with existing constant of same value
This was likely the intent.
This commit is contained in:
parent
f37ee2f304
commit
5680604437
@ -284,7 +284,7 @@ bool BlockchainLMDB::need_resize()
|
|||||||
|
|
||||||
uint64_t size_used = mst.ms_psize * mei.me_last_pgno;
|
uint64_t size_used = mst.ms_psize * mei.me_last_pgno;
|
||||||
|
|
||||||
if ((double)size_used / mei.me_mapsize > 0.8)
|
if ((double)size_used / mei.me_mapsize > RESIZE_PERCENT)
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user