mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
rpc: quantize db size up to 5 GB in restricted mode
This commit is contained in:
parent
31bdf7bd11
commit
bb2aed8e4d
@ -65,6 +65,11 @@ namespace
|
||||
reasons += ", ";
|
||||
reasons += reason;
|
||||
}
|
||||
|
||||
uint64_t round_up(uint64_t value, uint64_t quantum)
|
||||
{
|
||||
return (value + quantum - 1) / quantum * quantum;
|
||||
}
|
||||
}
|
||||
|
||||
namespace cryptonote
|
||||
@ -214,7 +219,9 @@ namespace cryptonote
|
||||
boost::shared_lock<boost::shared_mutex> lock(m_bootstrap_daemon_mutex);
|
||||
res.was_bootstrap_ever_used = m_was_bootstrap_ever_used;
|
||||
}
|
||||
res.database_size = restricted ? 0 : m_core.get_blockchain_storage().get_db().get_database_size();
|
||||
res.database_size = m_core.get_blockchain_storage().get_db().get_database_size();
|
||||
if (restricted)
|
||||
res.database_size = round_up(res.database_size, 5ull* 1024 * 1024 * 1024);
|
||||
res.update_available = restricted ? false : m_core.is_update_available();
|
||||
res.version = restricted ? "" : MONERO_VERSION;
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user