From 2e01f2291e6dda1f995f879736e396d826f735c7 Mon Sep 17 00:00:00 2001 From: sowle Date: Fri, 27 Dec 2024 19:37:39 +0100 Subject: [PATCH] tests: fixes for performance_tests and functional_tests --- tests/functional_tests/core_concurrency_test.cpp | 3 ++- tests/performance_tests/single_tx_test_base.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/functional_tests/core_concurrency_test.cpp b/tests/functional_tests/core_concurrency_test.cpp index 3fcbc00c..1d791dcc 100644 --- a/tests/functional_tests/core_concurrency_test.cpp +++ b/tests/functional_tests/core_concurrency_test.cpp @@ -77,7 +77,8 @@ bool create_block_template_manually(const currency::block& prev_block, boost::mu result.miner_tx, block_reward_without_fee, block_reward, - TRANSACTION_VERSION_PRE_HF4); + TRANSACTION_VERSION_PRE_HF4, + 0); CHECK_AND_ASSERT_MES(r, false, "construct_miner_tx failed"); size_t coinbase_size = get_object_blobsize(result.miner_tx); diff --git a/tests/performance_tests/single_tx_test_base.h b/tests/performance_tests/single_tx_test_base.h index a605d624..a3aff814 100644 --- a/tests/performance_tests/single_tx_test_base.h +++ b/tests/performance_tests/single_tx_test_base.h @@ -20,7 +20,7 @@ public: uint64_t block_reward_without_fee = 0; uint64_t block_reward = 0; - if(!construct_miner_tx(0, 0, 0, 2, 0, m_bob.get_keys().account_address, m_bob.get_keys().account_address, m_tx, block_reward_without_fee, block_reward, TRANSACTION_VERSION_PRE_HF4, blobdata(), CURRENCY_MINER_TX_MAX_OUTS)) + if(!construct_miner_tx(0, 0, 0, 2, 0, m_bob.get_keys().account_address, m_bob.get_keys().account_address, m_tx, block_reward_without_fee, block_reward, TRANSACTION_VERSION_PRE_HF4, 0, blobdata(), CURRENCY_MINER_TX_MAX_OUTS)) return false; m_tx_pub_key = get_tx_pub_key_from_extra(m_tx); return true;