mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
core: don't check block rate nor fork time in regtest mode
This commit is contained in:
parent
5dbcceb664
commit
ffdbcfb6b3
1 changed files with 4 additions and 1 deletions
|
@ -1594,6 +1594,9 @@ namespace cryptonote
|
||||||
//-----------------------------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------------------------
|
||||||
bool core::check_fork_time()
|
bool core::check_fork_time()
|
||||||
{
|
{
|
||||||
|
if (m_nettype == FAKECHAIN)
|
||||||
|
return true;
|
||||||
|
|
||||||
HardFork::State state = m_blockchain_storage.get_hard_fork_state();
|
HardFork::State state = m_blockchain_storage.get_hard_fork_state();
|
||||||
const el::Level level = el::Level::Warning;
|
const el::Level level = el::Level::Warning;
|
||||||
switch (state) {
|
switch (state) {
|
||||||
|
@ -1809,7 +1812,7 @@ namespace cryptonote
|
||||||
//-----------------------------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------------------------
|
||||||
bool core::check_block_rate()
|
bool core::check_block_rate()
|
||||||
{
|
{
|
||||||
if (m_offline || m_target_blockchain_height > get_current_blockchain_height())
|
if (m_offline || m_nettype == FAKECHAIN || m_target_blockchain_height > get_current_blockchain_height())
|
||||||
{
|
{
|
||||||
MDEBUG("Not checking block rate, offline or syncing");
|
MDEBUG("Not checking block rate, offline or syncing");
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue