diff --git a/tests/performance_tests/is_out_to_acc.h b/tests/performance_tests/is_out_to_acc.h index 12ef0f79f..7da061c1e 100644 --- a/tests/performance_tests/is_out_to_acc.h +++ b/tests/performance_tests/is_out_to_acc.h @@ -63,7 +63,10 @@ public: bool test() { const cryptonote::txout_to_key& tx_out = boost::get(m_tx.vout[0].target); - return cryptonote::is_out_to_acc_precomp(m_bob.get_keys().m_account_address.m_spend_public_key, tx_out, m_derivation, 0); + std::unordered_map subaddresses; + std::vector additional_derivations; + boost::optional info = cryptonote::is_out_to_acc_precomp(subaddresses, tx_out.key, m_derivation, additional_derivations, 0); + return (bool)info; } private: