diff options
| author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-12-30 17:30:01 +0000 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-12-30 17:30:01 +0000 |
| commit | 70dd34634cd20c19ede2eb1d19fa2419aa760e56 (patch) | |
| tree | c40ef86e91e960a8624fd5de0482b5655219a5ee | |
| parent | 91001aa4460a59a42dc14a32c8e90717fd29dbd2 (diff) | |
| download | monzero-core-70dd34634cd20c19ede2eb1d19fa2419aa760e56.tar.gz monzero-core-70dd34634cd20c19ede2eb1d19fa2419aa760e56.tar.xz monzero-core-70dd34634cd20c19ede2eb1d19fa2419aa760e56.zip | |
unit_tests: fix hardfork test build
The dummy blockchain class needed to have the newly added
is_read_only virtual function.
| -rw-r--r-- | tests/unit_tests/hardfork.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/unit_tests/hardfork.cpp b/tests/unit_tests/hardfork.cpp index 82b1a33ff..97f08a49d 100644 --- a/tests/unit_tests/hardfork.cpp +++ b/tests/unit_tests/hardfork.cpp @@ -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 |
