unit_tests: fix hardfork test build

The dummy blockchain class needed to have the newly added
is_read_only virtual function.
This commit is contained in:
moneromooo-monero 2015-12-30 17:30:01 +00:00
parent 91001aa446
commit 70dd34634c
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -102,6 +102,7 @@ public:
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 bool is_read_only() const { return false; }
virtual void add_block( const block& blk
, const size_t& block_size