aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2016-09-16 08:42:26 +0200
committerRiccardo Spagni <ric@spagni.net>2016-09-16 08:42:26 +0200
commitc2f15e966c56ffe0c7a5aab90c96f924809b39bf (patch)
treef91368b4c27b3934f357aab3fcc8ca180a484f6c /src
parentMerge pull request #1074 (diff)
parentcompile errors fixed when PER_BLOCK_CHECKPOINT not defined (diff)
downloadmonero-c2f15e966c56ffe0c7a5aab90c96f924809b39bf.tar.xz
Merge pull request #1076
e29e8b1 compile errors fixed when PER_BLOCK_CHECKPOINT not defined (rckngOpossum) e49c161 compile errors fixed when DEBUG_CREATE_BLOCK_TEMPLATE defined (rckngOpossum)
Diffstat (limited to 'src')
-rw-r--r--src/cryptonote_core/blockchain.cpp6
-rw-r--r--src/cryptonote_core/cryptonote_format_utils.cpp2
-rw-r--r--src/cryptonote_core/tx_pool.h6
3 files changed, 11 insertions, 3 deletions
diff --git a/src/cryptonote_core/blockchain.cpp b/src/cryptonote_core/blockchain.cpp
index b15eb4b90..83e6e40b0 100644
--- a/src/cryptonote_core/blockchain.cpp
+++ b/src/cryptonote_core/blockchain.cpp
@@ -1105,7 +1105,7 @@ bool Blockchain::create_block_template(block& b, const account_public_address& m
}
else
{
- if (cur_tx.fee != cur_tx.tx.txnFee)
+ if (cur_tx.fee != cur_tx.tx.rct_signatures.txnFee)
{
LOG_ERROR("Creating block template: error: invalid fee");
}
@@ -2956,8 +2956,8 @@ leave:
// be a parameter?
// validate proof_of_work versus difficulty target
bool precomputed = false;
-#if defined(PER_BLOCK_CHECKPOINT)
bool fast_check = false;
+#if defined(PER_BLOCK_CHECKPOINT)
if (m_db->height() < m_blocks_hash_check.size())
{
auto hash = get_block_hash(bl);
@@ -3758,6 +3758,7 @@ std::map<uint64_t, uint64_t> Blockchain:: get_output_histogram(const std::vector
return m_db->get_output_histogram(amounts, unlocked);
}
+#if defined(PER_BLOCK_CHECKPOINT)
void Blockchain::load_compiled_in_block_hashes()
{
if (m_fast_sync && get_blocks_dat_start(m_testnet) != nullptr)
@@ -3800,6 +3801,7 @@ void Blockchain::load_compiled_in_block_hashes()
}
}
}
+#endif
bool Blockchain::for_all_key_images(std::function<bool(const crypto::key_image&)> f) const
{
diff --git a/src/cryptonote_core/cryptonote_format_utils.cpp b/src/cryptonote_core/cryptonote_format_utils.cpp
index 9667006a3..d1ccfc7d1 100644
--- a/src/cryptonote_core/cryptonote_format_utils.cpp
+++ b/src/cryptonote_core/cryptonote_format_utils.cpp
@@ -129,7 +129,7 @@ namespace cryptonote
#if defined(DEBUG_CREATE_BLOCK_TEMPLATE)
LOG_PRINT_L1("Creating block template: reward " << block_reward <<
- ", fee " << fee)
+ ", fee " << fee);
#endif
block_reward += fee;
diff --git a/src/cryptonote_core/tx_pool.h b/src/cryptonote_core/tx_pool.h
index 0e280872d..794b86719 100644
--- a/src/cryptonote_core/tx_pool.h
+++ b/src/cryptonote_core/tx_pool.h
@@ -455,8 +455,14 @@ namespace cryptonote
*/
typedef std::unordered_map<crypto::key_image, std::unordered_set<crypto::hash> > key_images_container;
+#if defined(DEBUG_CREATE_BLOCK_TEMPLATE)
+public:
+#endif
mutable epee::critical_section m_transactions_lock; //!< lock for the pool
transactions_container m_transactions; //!< container for transactions in the pool
+#if defined(DEBUG_CREATE_BLOCK_TEMPLATE)
+private:
+#endif
//! container for spent key images from the transactions in the pool
key_images_container m_spent_key_images;