diff options
| author | JollyMort <jm-uduq3axu@unseeni.net> | 2017-07-22 23:35:53 +0200 |
|---|---|---|
| committer | JollyMort <jm-uduq3axu@unseeni.net> | 2017-07-22 23:35:53 +0200 |
| commit | 23909bb04d3c76f0fee4700494cb9215f173475e (patch) | |
| tree | 0806acf82b6ac5e7adb3574e1adae231eae65016 | |
| parent | ab594cfee94dff87bb7039724563f6177a892b8b (diff) | |
| download | monzero-core-23909bb04d3c76f0fee4700494cb9215f173475e.tar.gz monzero-core-23909bb04d3c76f0fee4700494cb9215f173475e.tar.xz monzero-core-23909bb04d3c76f0fee4700494cb9215f173475e.zip | |
Make successful transfer log message more informative
"Payment successfully sent" can be misleading if the TX isn't confirmed and drops from TX-pool.
| -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(); |
