From 43ea2cb9dbadd3dc18d62b800bd1193b10364ab5 Mon Sep 17 00:00:00 2001 From: sowle Date: Thu, 23 Apr 2020 17:12:26 +0300 Subject: [PATCH] more fixes for performance tests --- tests/performance_tests/check_ring_signature.h | 2 +- tests/performance_tests/construct_tx.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/performance_tests/check_ring_signature.h b/tests/performance_tests/check_ring_signature.h index a016e84f..5a56a783 100644 --- a/tests/performance_tests/check_ring_signature.h +++ b/tests/performance_tests/check_ring_signature.h @@ -34,7 +34,7 @@ public: m_alice.generate(); std::vector destinations; - destinations.push_back(tx_destination_entry(this->m_source_amount, m_alice.get_keys().m_account_address)); + destinations.push_back(tx_destination_entry(this->m_source_amount, m_alice.get_keys().account_address)); if (!construct_tx(this->m_miners[this->real_source_idx].get_keys(), this->m_sources, destinations, m_tx, 0)) return false; diff --git a/tests/performance_tests/construct_tx.h b/tests/performance_tests/construct_tx.h index 747160b6..682a4b84 100644 --- a/tests/performance_tests/construct_tx.h +++ b/tests/performance_tests/construct_tx.h @@ -34,7 +34,7 @@ public: for (size_t i = 0; i < out_count; ++i) { - m_destinations.push_back(tx_destination_entry(this->m_source_amount / out_count, m_alice.get_keys().m_account_address)); + m_destinations.push_back(tx_destination_entry(this->m_source_amount / out_count, m_alice.get_keys().account_address)); } return true;