diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-10-22 10:14:33 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-10-22 10:14:33 -0500 |
commit | 99e4c403cbdbe3cf726ca70598f92c6e9c4e9378 (patch) | |
tree | 0acd8651346f3bd209103124ccd44048d17e61d6 /src | |
parent | Merge pull request #5974 (diff) | |
parent | simplewallet: do not print warning for locked coinbase txes (diff) | |
download | monero-99e4c403cbdbe3cf726ca70598f92c6e9c4e9378.tar.xz |
Merge pull request #5977
e85c838 simplewallet: do not print warning for locked coinbase txes (moneromooo-monero)
Diffstat (limited to 'src')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 0174104be..43fd99304 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -5131,7 +5131,7 @@ void simple_wallet::on_money_received(uint64_t height, const crypto::hash &txid, tr("WARNING: this transaction uses an unencrypted payment ID: these are obsolete and ignored. Use subaddresses instead."); } } - if (unlock_time) + if (unlock_time && !cryptonote::is_coinbase(tx)) message_writer() << tr("NOTE: This transaction is locked, see details with: show_transfer ") + epee::string_tools::pod_to_hex(txid); if (m_auto_refresh_refreshing) m_cmd_binder.print_prompt(); |