tests: fix test_options initialization error

This commit is contained in:
Dusan Klinec 2019-04-07 18:15:20 +02:00
parent 5dbcceb664
commit ac874e2d40
No known key found for this signature in database
GPG key ID: 6337E118CCBCE103
5 changed files with 6 additions and 6 deletions

View file

@ -84,7 +84,7 @@ template<>
struct get_test_options<gen_multisig_tx_validation_base> {
const std::pair<uint8_t, uint64_t> hard_forks[3] = {std::make_pair(1, 0), std::make_pair(4, 1), std::make_pair(0, 0)};
const cryptonote::test_options test_options = {
hard_forks
hard_forks, 0
};
};