aboutsummaryrefslogtreecommitdiff
path: root/tests/functional_tests
diff options
context:
space:
mode:
authorIlya Kitaev <mbg033@gmail.com>2016-05-12 15:14:30 +0300
committerIlya Kitaev <mbg033@gmail.com>2016-05-12 15:14:30 +0300
commit2d799097ca8467f27c684ba36152ff4e83c6ad28 (patch)
tree023ca29ac16e5a9198920eaeb1e9dea59544e9b3 /tests/functional_tests
parent5dbd2b8fc3aa97f3a2e14a378cf6b7afd16bd4e2 (diff)
parent8b0d22a2aa5f4a1539f40e276feca3b1879924eb (diff)
downloadmonzero-core-2d799097ca8467f27c684ba36152ff4e83c6ad28.tar.gz
monzero-core-2d799097ca8467f27c684ba36152ff4e83c6ad28.tar.xz
monzero-core-2d799097ca8467f27c684ba36152ff4e83c6ad28.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'tests/functional_tests')
-rw-r--r--tests/functional_tests/transactions_flow_test.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/functional_tests/transactions_flow_test.cpp b/tests/functional_tests/transactions_flow_test.cpp
index 159ccfd83..6bf910101 100644
--- a/tests/functional_tests/transactions_flow_test.cpp
+++ b/tests/functional_tests/transactions_flow_test.cpp
@@ -85,7 +85,8 @@ 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, true);
+ 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.commit_tx(ptx);
return true;
}