aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2023-10-28 02:50:57 +0200
committerselsta <selsta@sent.at>2023-10-28 04:26:27 +0200
commit5443240aa65e64824ab6c08f67ae88ebc86c965d (patch)
treefe569fe3e2c16be84b7bcc2fd234b3249c2dacbe /tests
parentMerge pull request #9026 (diff)
downloadmonero-5443240aa65e64824ab6c08f67ae88ebc86c965d.tar.xz
core_tests: fix gcc7 compilation
Diffstat (limited to 'tests')
-rw-r--r--tests/core_tests/wallet_tools.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/core_tests/wallet_tools.cpp b/tests/core_tests/wallet_tools.cpp
index 5378b0254..ee29fdad1 100644
--- a/tests/core_tests/wallet_tools.cpp
+++ b/tests/core_tests/wallet_tools.cpp
@@ -4,7 +4,6 @@
#include "wallet_tools.h"
#include <random>
-#include <boost/assign.hpp>
using namespace std;
using namespace epee;
@@ -39,7 +38,8 @@ void wallet_accessor_test::process_parsed_blocks(tools::wallet2 * wallet, uint64
void wallet_tools::process_transactions(tools::wallet2 * wallet, const std::vector<test_event_entry>& events, const cryptonote::block& blk_head, block_tracker &bt, const boost::optional<crypto::hash>& blk_tail)
{
- process_transactions(boost::assign::list_of(wallet), events, blk_head, bt, blk_tail);
+ std::vector<tools::wallet2*> wallet_vector = { wallet };
+ process_transactions(wallet_vector, events, blk_head, bt, blk_tail);
}
void wallet_tools::process_transactions(const std::vector<tools::wallet2*>& wallets, const std::vector<test_event_entry>& events, const cryptonote::block& blk_head, block_tracker &bt, const boost::optional<crypto::hash>& blk_tail)
@@ -56,7 +56,8 @@ void wallet_tools::process_transactions(const std::vector<tools::wallet2*>& wall
}
void wallet_tools::process_transactions(tools::wallet2 * wallet, const std::vector<const cryptonote::block*>& blockchain, const map_hash2tx_t & mtx, block_tracker &bt){
- process_transactions(boost::assign::list_of(wallet), blockchain, mtx, bt);
+ std::vector<tools::wallet2*> wallet_vector = { wallet };
+ process_transactions(wallet_vector, blockchain, mtx, bt);
}
void wallet_tools::process_transactions(const std::vector<tools::wallet2*>& wallets, const std::vector<const cryptonote::block*>& blockchain, const map_hash2tx_t & mtx, block_tracker &bt)