diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-02-20 17:47:20 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-02-20 17:47:20 +0200 |
commit | 4e9de945652356fa4c98e6cd7e33e8c1550a2789 (patch) | |
tree | 57a07433cb94b660ed8874e9227d23d561db4447 | |
parent | Merge pull request #3255 (diff) | |
parent | simplewallet: do nothing in on_skip_transaction (wallet2 already logs warnings) (diff) | |
download | monero-4e9de945652356fa4c98e6cd7e33e8c1550a2789.tar.xz |
Merge pull request #3257
da25757b simplewallet: do nothing in on_skip_transaction (wallet2 already logs warnings) (stoffu)
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 150c6333c..f933a94ed 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -3194,14 +3194,6 @@ void simple_wallet::on_money_spent(uint64_t height, const crypto::hash &txid, co //---------------------------------------------------------------------------------------------------- void simple_wallet::on_skip_transaction(uint64_t height, const crypto::hash &txid, const cryptonote::transaction& tx) { - message_writer(console_color_red, true) << "\r" << - tr("Height ") << height << ", " << - tr("transaction ") << txid << ", " << - tr("unsupported transaction format"); - if (m_auto_refresh_refreshing) - m_cmd_binder.print_prompt(); - else - m_refresh_progress_reporter.update(height, true); } //---------------------------------------------------------------------------------------------------- bool simple_wallet::refresh_main(uint64_t start_height, bool reset, bool is_init) |