diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-08-07 15:07:33 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-08-07 15:07:33 +0200 |
commit | 8494ffbc376d450aa9ec83e582767e786ae77031 (patch) | |
tree | 91e936b7bb21fea6c3a5ca936ef1780f05a06a4f /src | |
parent | Merge pull request #2188 (diff) | |
parent | Make successful transfer log message more informative (diff) | |
download | monero-8494ffbc376d450aa9ec83e582767e786ae77031.tar.xz |
Merge pull request #2191
23909bb0 Make successful transfer log message more informative (JollyMort)
Diffstat (limited to 'src')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index adf2fde80..e7b7559a3 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -2375,7 +2375,8 @@ bool simple_wallet::transfer_main(int transfer_type, const std::vector<std::stri { auto & ptx = ptx_vector.back(); m_wallet->commit_tx(ptx); - success_msg_writer(true) << tr("Money successfully sent, transaction ") << get_transaction_hash(ptx.tx); + success_msg_writer(true) << tr("Transaction successfully submitted, transaction ") << get_transaction_hash(ptx.tx) << ENDL + << tr("You can check its status by using the `show_transfers` command."); // if no exception, remove element from vector ptx_vector.pop_back(); |