From a6688200fb3f2608b80a419f8231647581a81ca0 Mon Sep 17 00:00:00 2001 From: Ilya Kitaev Date: Wed, 28 Sep 2016 00:31:21 +0300 Subject: [PATCH] libwallet_api: explicitly return 0 in Wallet::daemonBlockChainHeight() on error --- src/wallet/api/wallet.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp index 9a001abf3..e249080b1 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -428,8 +428,10 @@ uint64_t WalletImpl::daemonBlockChainHeight() const uint64_t result = m_wallet->get_daemon_blockchain_height(err); if (!err.empty()) { LOG_ERROR(__FUNCTION__ << ": " << err); + result = 0; m_errorString = err; m_status = Status_Error; + } else { m_status = Status_Ok; m_errorString = "";