aboutsummaryrefslogtreecommitdiff
path: root/tests/performance_tests/is_out_to_acc.h
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-10-15 19:58:53 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-10-15 19:58:53 +0100
commitfddd8d226f5b76edda78fcdd3fe4dfffdf2d6e88 (patch)
tree14105c497ac497ce7840f681cc24db108442eccb /tests/performance_tests/is_out_to_acc.h
parentMerge pull request #2656 (diff)
downloadmonero-fddd8d226f5b76edda78fcdd3fe4dfffdf2d6e88.tar.xz
performance_tests: fix build after subaddress patch
Diffstat (limited to 'tests/performance_tests/is_out_to_acc.h')
-rw-r--r--tests/performance_tests/is_out_to_acc.h5
1 files changed, 4 insertions, 1 deletions
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<cryptonote::txout_to_key>(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<crypto::public_key, cryptonote::subaddress_index> subaddresses;
+ std::vector<crypto::key_derivation> additional_derivations;
+ boost::optional<cryptonote::subaddress_receive_info> info = cryptonote::is_out_to_acc_precomp(subaddresses, tx_out.key, m_derivation, additional_derivations, 0);
+ return (bool)info;
}
private: