diff options
author | cryptochangements34 <bevanoffr@gmail.com> | 2018-03-21 22:56:04 -0400 |
---|---|---|
committer | cryptochangements34 <bevanoffr@gmail.com> | 2018-03-21 22:56:04 -0400 |
commit | ad19f8679e8c859ec61a43a2debc705f440edcb8 (patch) | |
tree | cd74163f7c12ff0c0b3d3709daae1f06295daa16 /src | |
parent | Merge pull request #3434 (diff) | |
download | monero-ad19f8679e8c859ec61a43a2debc705f440edcb8.tar.xz |
don't show error twice when starting simplewallet
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 97dadb126..fc0983ebe 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -3797,7 +3797,7 @@ void simple_wallet::on_skip_transaction(uint64_t height, const crypto::hash &txi //---------------------------------------------------------------------------------------------------- bool simple_wallet::refresh_main(uint64_t start_height, bool reset, bool is_init) { - if (!try_connect_to_daemon()) + if (!try_connect_to_daemon(is_init)) return true; LOCK_IDLE_SCOPE(); |