From eebac8eca4b3ea2fcb46422cbf2d198f60adf835 Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Tue, 3 Dec 2019 02:25:02 +0100 Subject: [PATCH] disabled unused macro --- src/wallet/wallet2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 996b50fa..2d411e68 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -4266,7 +4266,7 @@ void wallet2::transfer(const std::vector& dsts, bool send_to_network, std::string* p_signed_tx_blob_str) { - TIME_MEASURE_START(precalculation_time); + //TIME_MEASURE_START(precalculation_time); construct_tx_param ctp = AUTO_VAL_INIT(ctp); ctp.attachments = attachments; ctp.crypt_address = currency::get_crypt_address_from_destinations(m_account.get_keys(), dsts); @@ -4282,7 +4282,7 @@ void wallet2::transfer(const std::vector& dsts, ctp.split_strategy_id = destination_split_strategy_id; ctp.tx_outs_attr = tx_outs_attr; ctp.unlock_time = unlock_time; - TIME_MEASURE_FINISH(precalculation_time); + //TIME_MEASURE_FINISH(precalculation_time); transfer(ctp, tx, send_to_network, p_signed_tx_blob_str); } //----------------------------------------------------------------------------------------------------