mirror of
https://github.com/monero-project/monero.git
synced 2025-08-09 20:42:21 -04:00
Merge pull request #5877
2cd4fd8
Changed the use of boost:value_initialized for C++ list initializer (JesusRami)4ad191f
Removed unused boost/value_init header (whyamiroot)928f4be
Make null hash constants constexpr (whyamiroot)
This commit is contained in:
commit
ee6e849627
13 changed files with 35 additions and 38 deletions
|
@ -253,7 +253,7 @@ bool transactions_flow_test(std::string& working_folder,
|
|||
transfered_money += amount_to_tx;
|
||||
|
||||
LOG_PRINT_L0("transferred " << amount_to_tx << ", i=" << i );
|
||||
tx_test_entry& ent = txs[get_transaction_hash(tx)] = boost::value_initialized<tx_test_entry>();
|
||||
tx_test_entry& ent = txs[get_transaction_hash(tx)] = tx_test_entry{};
|
||||
ent.amount_transfered = amount_to_tx;
|
||||
ent.tx = tx;
|
||||
//if(i % transactions_per_second)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue