diff options
author | luigi1111 <luigi1111w@gmail.com> | 2018-05-29 12:59:58 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2018-05-29 12:59:58 -0500 |
commit | 8e1b322a15e5a33f12ff06cbc897ea813c02e0e6 (patch) | |
tree | 49a34815b6c5895afee998b092a4cde3a5dba778 /src/simplewallet | |
parent | Merge pull request #3446 (diff) | |
parent | don't show error twice when starting simplewallet (diff) | |
download | monero-8e1b322a15e5a33f12ff06cbc897ea813c02e0e6.tar.xz |
Merge pull request #3470
ad19f86 don't show error twice when starting simplewallet (cryptochangements34)
Diffstat (limited to 'src/simplewallet')
-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 d573f317b..c6269273a 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -3830,7 +3830,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(); |