diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-08-14 10:13:44 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-08-28 21:30:29 +0100 |
commit | f782d458273cef6c6272416d078a7900af143479 (patch) | |
tree | 0825ae2c9fe5f954eec70891a8b922de7f0d6b75 /tests/core_tests/chaingen.h | |
parent | ringct: use Cryptonote serialization to hash non prunable data (diff) | |
download | monero-f782d458273cef6c6272416d078a7900af143479.tar.xz |
tests: hard fork list must end with a 0
Diffstat (limited to 'tests/core_tests/chaingen.h')
-rw-r--r-- | tests/core_tests/chaingen.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/core_tests/chaingen.h b/tests/core_tests/chaingen.h index 81cbc2b6a..047d2c81c 100644 --- a/tests/core_tests/chaingen.h +++ b/tests/core_tests/chaingen.h @@ -475,11 +475,11 @@ inline bool replay_events_through_core(cryptonote::core& cr, const std::vector<t //-------------------------------------------------------------------------- template<typename t_test_class> struct get_test_options { - const std::pair<uint8_t, uint64_t> hard_forks[1]; + const std::pair<uint8_t, uint64_t> hard_forks[2]; const cryptonote::test_options test_options = { hard_forks }; - get_test_options():hard_forks{std::make_pair((uint8_t)1, (uint64_t)0)}{} + get_test_options():hard_forks{std::make_pair((uint8_t)1, (uint64_t)0), std::make_pair((uint8_t)0, (uint64_t)0)}{} }; //-------------------------------------------------------------------------- |