mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-23 11:23:26 +01:00
Merge pull request #2142
02d66db4
tx_pool: initialize padding in txpool meta structure (moneromooo-monero)0722aea3
cryptonote_core: initialize checkpoint flag (moneromooo-monero)
This commit is contained in:
commit
42fc89b672
@ -78,6 +78,7 @@ namespace cryptonote
|
|||||||
m_last_json_checkpoints_update(0),
|
m_last_json_checkpoints_update(0),
|
||||||
m_update_download(0)
|
m_update_download(0)
|
||||||
{
|
{
|
||||||
|
m_checkpoints_updating.clear();
|
||||||
set_cryptonote_protocol(pprotocol);
|
set_cryptonote_protocol(pprotocol);
|
||||||
}
|
}
|
||||||
void core::set_cryptonote_protocol(i_cryptonote_protocol* pprotocol)
|
void core::set_cryptonote_protocol(i_cryptonote_protocol* pprotocol)
|
||||||
|
@ -225,6 +225,7 @@ namespace cryptonote
|
|||||||
meta.last_relayed_time = time(NULL);
|
meta.last_relayed_time = time(NULL);
|
||||||
meta.relayed = relayed;
|
meta.relayed = relayed;
|
||||||
meta.do_not_relay = do_not_relay;
|
meta.do_not_relay = do_not_relay;
|
||||||
|
memset(meta.padding, 0, sizeof(meta.padding));
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
CRITICAL_REGION_LOCAL1(m_blockchain);
|
CRITICAL_REGION_LOCAL1(m_blockchain);
|
||||||
@ -261,6 +262,7 @@ namespace cryptonote
|
|||||||
meta.last_relayed_time = time(NULL);
|
meta.last_relayed_time = time(NULL);
|
||||||
meta.relayed = relayed;
|
meta.relayed = relayed;
|
||||||
meta.do_not_relay = do_not_relay;
|
meta.do_not_relay = do_not_relay;
|
||||||
|
memset(meta.padding, 0, sizeof(meta.padding));
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user