tests: hard fork list must end with a 0

This commit is contained in:
moneromooo-monero
2016-08-14 10:13:44 +01:00
parent 074e602609
commit f782d45827
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -81,7 +81,7 @@ private:
template<>
struct get_test_options<gen_rct_tx_validation_base> {
const std::pair<uint8_t, uint64_t> hard_forks[3] = {std::make_pair(1, 0), std::make_pair(2, 1), std::make_pair(4, 65)};
const std::pair<uint8_t, uint64_t> hard_forks[4] = {std::make_pair(1, 0), std::make_pair(2, 1), std::make_pair(4, 65), std::make_pair(0, 0)};
const cryptonote::test_options test_options = {
hard_forks
};