aboutsummaryrefslogtreecommitdiff
path: root/tests/functional_tests
diff options
context:
space:
mode:
authorThomas Winget <tewinget@gmail.com>2014-06-15 20:36:44 -0400
committerThomas Winget <tewinget@gmail.com>2014-06-30 07:16:50 -0400
commit2e048a467976f6f620a3e9f55d26744139456147 (patch)
tree4c92550d5d6bc8c7450b701dd15f1fa5dba44a94 /tests/functional_tests
parentworking on dividing functions in prep for tx splitting (diff)
downloadmonero-2e048a467976f6f620a3e9f55d26744139456147.tar.xz
final changes to get transaction splitting building. needs testing.
Diffstat (limited to 'tests/functional_tests')
-rw-r--r--tests/functional_tests/transactions_flow_test.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/functional_tests/transactions_flow_test.cpp b/tests/functional_tests/transactions_flow_test.cpp
index 4c6d5b07f..17cfc23c4 100644
--- a/tests/functional_tests/transactions_flow_test.cpp
+++ b/tests/functional_tests/transactions_flow_test.cpp
@@ -52,7 +52,9 @@ bool do_send_money(tools::wallet2& w1, tools::wallet2& w2, size_t mix_in_factor,
try
{
- w1.transfer(dsts, mix_in_factor, 0, DEFAULT_FEE, std::vector<uint8_t>(), tools::detail::null_split_strategy, tools::tx_dust_policy(DEFAULT_FEE), tx);
+ tools::wallet2::pending_tx ptx;
+ w1.transfer(dsts, mix_in_factor, 0, DEFAULT_FEE, std::vector<uint8_t>(), tools::detail::null_split_strategy, tools::tx_dust_policy(DEFAULT_FEE), tx, ptx);
+ w1.commit_tx(ptx);
return true;
}
catch (const std::exception&)