mirror of
https://github.com/monero-project/monero.git
synced 2026-01-17 07:12:01 -08:00
Merge pull request #631
bcac101daemon: fix a few issues reported by valgrind (moneromooo-monero)a7e8174tx_pool: fix serialization of new relayed data (moneromooo-monero)601ad76hardfork: fix mixup in indexing variable in get_voting_info (moneromooo-monero)444e22fblockchain: remove unused timer (moneromooo-monero)7edfdd8blockchain: fix m_sync_counter uninitialized variable use (moneromooo-monero)d97582cepee: use generate_random_bytes for new random uuids (moneromooo-monero)17c7c9cepee: remove dodgy random code that nobody uses (moneromooo-monero)
This commit is contained in:
@@ -100,7 +100,7 @@ static const uint64_t testnet_hard_fork_version_1_till = 624633;
|
||||
//------------------------------------------------------------------
|
||||
Blockchain::Blockchain(tx_memory_pool& tx_pool) :
|
||||
m_db(), m_tx_pool(tx_pool), m_timestamps_and_difficulties_height(0), m_current_block_cumul_sz_limit(0), m_is_in_checkpoint_zone(false),
|
||||
m_is_blockchain_storing(false), m_enforce_dns_checkpoints(false), m_max_prepare_blocks_threads(4), m_db_blocks_per_sync(1), m_db_sync_mode(db_async), m_fast_sync(true)
|
||||
m_is_blockchain_storing(false), m_enforce_dns_checkpoints(false), m_max_prepare_blocks_threads(4), m_db_blocks_per_sync(1), m_db_sync_mode(db_async), m_fast_sync(true), m_sync_counter(0)
|
||||
{
|
||||
LOG_PRINT_L3("Blockchain::" << __func__);
|
||||
}
|
||||
@@ -2144,7 +2144,6 @@ bool Blockchain::check_tx_inputs(const transaction& tx, uint64_t* pmax_used_bloc
|
||||
|
||||
// make sure that output being spent matches up correctly with the
|
||||
// signature spending it.
|
||||
TIME_MEASURE_START(aa);
|
||||
if (!check_tx_input(in_to_key, tx_prefix_hash, tx.signatures[sig_index], pubkeys[sig_index], pmax_used_block_height))
|
||||
{
|
||||
it->second[in_to_key.k_image] = false;
|
||||
|
||||
Reference in New Issue
Block a user