diff options
author | kenshi84 <kenshi84@protonmail.ch> | 2017-10-17 08:45:00 +0900 |
---|---|---|
committer | kenshi84 <kenshi84@protonmail.ch> | 2017-10-17 22:29:01 +0900 |
commit | 88ebfd646a5e75de0544958e88d152df86e310ec (patch) | |
tree | a0600efec855b82c884a510f87c4ed8c465c613e /tests/core_tests/double_spend.inl | |
parent | performance_tests: add master spend pubkey to subaddress hashtable (diff) | |
download | monero-88ebfd646a5e75de0544958e88d152df86e310ec.tar.xz |
core_tests: fix for subaddress patch
Diffstat (limited to 'tests/core_tests/double_spend.inl')
-rw-r--r-- | tests/core_tests/double_spend.inl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/core_tests/double_spend.inl b/tests/core_tests/double_spend.inl index 438e39e47..bf63503ae 100644 --- a/tests/core_tests/double_spend.inl +++ b/tests/core_tests/double_spend.inl @@ -144,7 +144,7 @@ bool gen_double_spend_in_tx<txs_keeped_by_block>::generate(std::vector<test_even destinations.push_back(de); cryptonote::transaction tx_1; - if (!construct_tx(bob_account.get_keys(), sources, destinations, std::vector<uint8_t>(), tx_1, 0)) + if (!construct_tx(bob_account.get_keys(), sources, destinations, boost::none, std::vector<uint8_t>(), tx_1, 0)) return false; SET_EVENT_VISITOR_SETT(events, event_visitor_settings::set_txs_keeped_by_block, txs_keeped_by_block); |