aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas Winget <tewinget@gmail.com>2014-06-16 14:35:20 -0400
committerThomas Winget <tewinget@gmail.com>2014-06-30 07:16:50 -0400
commit002ce963bfccb2e592e626c198e1fc9cbac96216 (patch)
treee99902c9db639acfeb34ca26044e1f0ab981c06c /src
parentup tx splits limit 5 -> 30 (diff)
downloadmonero-002ce963bfccb2e592e626c198e1fc9cbac96216.tar.xz
added back successful tx message. oops.
Diffstat (limited to 'src')
-rw-r--r--src/simplewallet/simplewallet.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp
index e5cc4d166..96f209cad 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -883,7 +883,9 @@ void simple_wallet::create_transactions(std::vector<cryptonote::tx_destination_e
// if we made it this far, we're OK to actually send the transactions
while (!ptx_vector.empty())
{
- m_wallet->commit_tx(ptx_vector.back());
+ auto & ptx = ptx_vector.back();
+ m_wallet->commit_tx(ptx);
+ success_msg_writer(true) << "Money successfully sent, transaction " << get_transaction_hash(ptx.tx);
// if no exception, remove element from vector
ptx_vector.pop_back();
}