From e1876ab7afabee422befa276886be5603b5327c6 Mon Sep 17 00:00:00 2001 From: 0xFFFC0000 <0xFFFC0000@proton.me> Date: Sun, 20 Oct 2024 13:25:31 +0000 Subject: [PATCH] tests: remove unlock_time argument from trezor_tests --- tests/trezor/trezor_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/trezor/trezor_tests.cpp b/tests/trezor/trezor_tests.cpp index 56fb333574f..43c086e1d20 100644 --- a/tests/trezor/trezor_tests.cpp +++ b/tests/trezor/trezor_tests.cpp @@ -1708,7 +1708,7 @@ tsx_builder * tsx_builder::construct_pending_tx(tools::wallet2::pending_tx &ptx, auto sources_copy = m_sources; auto change_addr = m_from->get_account().get_keys().m_account_address; bool r = construct_tx_and_get_tx_key(m_from->get_account().get_keys(), subaddresses, m_sources, destinations_copy, - change_addr, extra ? extra.get() : std::vector(), tx, 0, tx_key, + change_addr, extra ? extra.get() : std::vector(), tx, tx_key, additional_tx_keys, true, m_rct_config, this->m_tester->cur_hf() >= HF_VERSION_VIEW_TAGS); CHECK_AND_ASSERT_THROW_MES(r, "Transaction construction failed");