diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-08-26 23:45:50 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-08-26 23:45:50 +0200 |
commit | d8f402ad8f9ed458420473d4fa4a1ddbb1c6ad5e (patch) | |
tree | 9f2686b749595a2cc8f328a104cfc74c2b7bbf34 /src | |
parent | Merge pull request #2319 (diff) | |
parent | Fix refresh counter display (diff) | |
download | monero-d8f402ad8f9ed458420473d4fa4a1ddbb1c6ad5e.tar.xz |
Merge pull request #2343
c656dd0e Fix refresh counter display (Howard Chu)
c088d38a Simplify readline support (Howard Chu)
Diffstat (limited to 'src')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 59916c30a..479adcafc 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -63,6 +63,10 @@ #include "wallet/wallet_args.h" #include <stdexcept> +#ifdef HAVE_READLINE +#include "readline_buffer.h" +#endif + using namespace std; using namespace epee; using namespace cryptonote; @@ -1848,6 +1852,10 @@ bool simple_wallet::refresh_main(uint64_t start_height, bool reset) if (reset) m_wallet->rescan_blockchain(false); +#ifdef HAVE_READLINE + rdln::suspend_readline pause_readline; +#endif + message_writer() << tr("Starting refresh..."); uint64_t fetched_blocks = 0; |