Build fixes for the old blockchain_storage version

This commit is contained in:
moneromooo-monero 2015-10-26 19:43:39 +00:00
parent 7003e7c156
commit 3e89df4150
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3
4 changed files with 18 additions and 8 deletions

View file

@ -98,6 +98,11 @@ public:
virtual void add_spent_key(const crypto::key_image& k_image) {}
virtual void remove_spent_key(const crypto::key_image& k_image) {}
virtual bool for_all_key_images(std::function<bool(const crypto::key_image&)>) const { return true; }
virtual bool for_all_blocks(std::function<bool(uint64_t, const crypto::hash&, const cryptonote::block&)>) const { return true; }
virtual bool for_all_transactions(std::function<bool(const crypto::hash&, const cryptonote::transaction&)>) const { return true; }
virtual bool for_all_outputs(std::function<bool(uint64_t amount, const crypto::hash &tx_hash, size_t tx_idx)> f) const { return true; }
virtual void add_block( const block& blk
, const size_t& block_size
, const difficulty_type& cumulative_difficulty