diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-04-14 16:25:38 +0900 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-04-14 16:25:38 +0900 |
commit | 6bfb8799c3a25a962f60280d93e699808d341909 (patch) | |
tree | 6a173808afdad3c09723f929268dba7d5f454856 /tests | |
parent | Merge pull request #782 (diff) | |
parent | wallet: better output selection for transfer/transfer_new (diff) | |
download | monero-6bfb8799c3a25a962f60280d93e699808d341909.tar.xz |
Merge pull request #783
48d0747 wallet: better output selection for transfer/transfer_new (moneromooo-monero)
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 3c3cf3a90..159ccfd83 100644 --- a/tests/functional_tests/transactions_flow_test.cpp +++ b/tests/functional_tests/transactions_flow_test.cpp @@ -85,7 +85,7 @@ bool do_send_money(tools::wallet2& w1, tools::wallet2& w2, size_t mix_in_factor, try { tools::wallet2::pending_tx ptx; - w1.transfer(dsts, mix_in_factor, 0, TEST_FEE, std::vector<uint8_t>(), tools::detail::null_split_strategy, tools::tx_dust_policy(TEST_DUST_THRESHOLD), tx, ptx); + w1.transfer(dsts, mix_in_factor, 0, TEST_FEE, std::vector<uint8_t>(), tools::detail::null_split_strategy, tools::tx_dust_policy(TEST_DUST_THRESHOLD), tx, ptx, true); w1.commit_tx(ptx); return true; } |