diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2022-07-13 00:38:29 -0400 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2022-07-13 00:38:29 -0400 |
| commit | 6fed8c2d9f028d9cf175c2e7ce53951cb164b657 (patch) | |
| tree | c2e151884b4aeafb8b42c0fb65a4c7eba68896a4 /tests/core_tests/chaingen.cpp | |
| parent | 8f48f464957c875af3183cd9d35769592e1aef48 (diff) | |
| parent | c7b2944f8960c208ceddeb3075a673630ae000cd (diff) | |
| download | monzero-core-6fed8c2d9f028d9cf175c2e7ce53951cb164b657.tar.gz monzero-core-6fed8c2d9f028d9cf175c2e7ce53951cb164b657.tar.xz monzero-core-6fed8c2d9f028d9cf175c2e7ce53951cb164b657.zip | |
Merge pull request #8149
c7b2944 multisig: fix critical vulnerabilities in signing (anon)
Diffstat (limited to 'tests/core_tests/chaingen.cpp')
| -rw-r--r-- | tests/core_tests/chaingen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/core_tests/chaingen.cpp b/tests/core_tests/chaingen.cpp index 61195c7b0..144e87bc2 100644 --- a/tests/core_tests/chaingen.cpp +++ b/tests/core_tests/chaingen.cpp @@ -1076,7 +1076,7 @@ bool construct_tx_rct(const cryptonote::account_keys& sender_account_keys, std:: std::vector<crypto::secret_key> additional_tx_keys; std::vector<tx_destination_entry> destinations_copy = destinations; rct::RCTConfig rct_config = {range_proof_type, bp_version}; - return construct_tx_and_get_tx_key(sender_account_keys, subaddresses, sources, destinations_copy, change_addr, extra, tx, unlock_time, tx_key, additional_tx_keys, rct, rct_config, nullptr); + return construct_tx_and_get_tx_key(sender_account_keys, subaddresses, sources, destinations_copy, change_addr, extra, tx, unlock_time, tx_key, additional_tx_keys, rct, rct_config); } transaction construct_tx_with_fee(std::vector<test_event_entry>& events, const block& blk_head, |
