mirror of
https://github.com/monero-project/monero.git
synced 2026-01-21 03:53:19 +01:00
Merge pull request #2142
02d66db4tx_pool: initialize padding in txpool meta structure (moneromooo-monero)0722aea3cryptonote_core: initialize checkpoint flag (moneromooo-monero)
This commit is contained in:
@@ -78,6 +78,7 @@ namespace cryptonote
|
||||
m_last_json_checkpoints_update(0),
|
||||
m_update_download(0)
|
||||
{
|
||||
m_checkpoints_updating.clear();
|
||||
set_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.relayed = relayed;
|
||||
meta.do_not_relay = do_not_relay;
|
||||
memset(meta.padding, 0, sizeof(meta.padding));
|
||||
try
|
||||
{
|
||||
CRITICAL_REGION_LOCAL1(m_blockchain);
|
||||
@@ -261,6 +262,7 @@ namespace cryptonote
|
||||
meta.last_relayed_time = time(NULL);
|
||||
meta.relayed = relayed;
|
||||
meta.do_not_relay = do_not_relay;
|
||||
memset(meta.padding, 0, sizeof(meta.padding));
|
||||
|
||||
try
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user