diff options
author | luigi1111 <luigi1111w@gmail.com> | 2018-09-04 13:03:37 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2018-09-04 13:03:37 -0500 |
commit | 88e5ed00724cc29e7283028dc359a91ee435ccc4 (patch) | |
tree | 0e6eb0b933421f8f7aab3f4d3518bd18c59cf195 /tests | |
parent | Merge pull request #4160 (diff) | |
parent | wallet: store trusted-daemon flag in wallet2 (diff) | |
download | monero-88e5ed00724cc29e7283028dc359a91ee435ccc4.tar.xz |
Merge pull request #4245
8ca1215 wallet: store trusted-daemon flag in wallet2 (stoffu)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/functional_tests/transactions_flow_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional_tests/transactions_flow_test.cpp b/tests/functional_tests/transactions_flow_test.cpp index 03bfc0a9b..7248efade 100644 --- a/tests/functional_tests/transactions_flow_test.cpp +++ b/tests/functional_tests/transactions_flow_test.cpp @@ -86,7 +86,7 @@ bool do_send_money(tools::wallet2& w1, tools::wallet2& w2, size_t mix_in_factor, { tools::wallet2::pending_tx ptx; std::vector<size_t> indices = w1.select_available_outputs([](const tools::wallet2::transfer_details&) { return true; }); - w1.transfer(dsts, mix_in_factor, indices, 0, TEST_FEE, std::vector<uint8_t>(), tools::detail::null_split_strategy, tools::tx_dust_policy(TEST_DUST_THRESHOLD), tx, ptx, true); + w1.transfer(dsts, mix_in_factor, indices, 0, TEST_FEE, std::vector<uint8_t>(), tools::detail::null_split_strategy, tools::tx_dust_policy(TEST_DUST_THRESHOLD), tx, ptx); w1.commit_tx(ptx); return true; } |