diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-01-31 22:11:57 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-01-31 22:11:57 +0000 |
commit | 6827061d5f5a0eb71ed6a98f1feb544954876633 (patch) | |
tree | a395b4e225b115ab40fedc59f18d7d0c5c61dc28 /tests | |
parent | Merge pull request #636 (diff) | |
download | monero-6827061d5f5a0eb71ed6a98f1feb544954876633.tar.xz |
tests: fix compilation failure after V1 define rename
Diffstat (limited to 'tests')
-rw-r--r-- | tests/core_tests/block_validation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/core_tests/block_validation.cpp b/tests/core_tests/block_validation.cpp index d6c4078f3..bce0980bf 100644 --- a/tests/core_tests/block_validation.cpp +++ b/tests/core_tests/block_validation.cpp @@ -505,7 +505,7 @@ bool gen_block_is_too_big::generate(std::vector<test_event_entry>& events) const // Creating a huge miner_tx, it will have a lot of outs MAKE_MINER_TX_MANUALLY(miner_tx, blk_0); - static const size_t tx_out_count = CRYPTONOTE_BLOCK_GRANTED_FULL_REWARD_ZONE / 2; + static const size_t tx_out_count = CRYPTONOTE_BLOCK_GRANTED_FULL_REWARD_ZONE_V1 / 2; uint64_t amount = get_outs_money_amount(miner_tx); uint64_t portion = amount / tx_out_count; uint64_t remainder = amount % tx_out_count; |