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 | |
| parent | 8361d60aef6e17908658128284899e3a11d808d4 (diff) | |
| download | monzero-core-ad19f8679e8c859ec61a43a2debc705f440edcb8.tar.gz monzero-core-ad19f8679e8c859ec61a43a2debc705f440edcb8.tar.xz monzero-core-ad19f8679e8c859ec61a43a2debc705f440edcb8.zip | |
don't show error twice when starting 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 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(); |
