Merge pull request #3434
b1398fff
core: fix use of uninitialised data (moneromooo-monero)
This commit is contained in:
commit
8361d60aef
|
@ -200,6 +200,7 @@ namespace cryptonote
|
||||||
MAINNET = 0,
|
MAINNET = 0,
|
||||||
TESTNET,
|
TESTNET,
|
||||||
STAGENET,
|
STAGENET,
|
||||||
FAKECHAIN
|
FAKECHAIN,
|
||||||
|
UNDEFINED = 255
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -171,7 +171,8 @@ namespace cryptonote
|
||||||
m_last_json_checkpoints_update(0),
|
m_last_json_checkpoints_update(0),
|
||||||
m_disable_dns_checkpoints(false),
|
m_disable_dns_checkpoints(false),
|
||||||
m_threadpool(tools::threadpool::getInstance()),
|
m_threadpool(tools::threadpool::getInstance()),
|
||||||
m_update_download(0)
|
m_update_download(0),
|
||||||
|
m_nettype(UNDEFINED)
|
||||||
{
|
{
|
||||||
m_checkpoints_updating.clear();
|
m_checkpoints_updating.clear();
|
||||||
set_cryptonote_protocol(pprotocol);
|
set_cryptonote_protocol(pprotocol);
|
||||||
|
|
Loading…
Reference in New Issue