diff options
| author | Ilya Kitaev <mbg033@gmail.com> | 2016-09-28 00:31:21 +0300 |
|---|---|---|
| committer | Ilya Kitaev <mbg033@gmail.com> | 2016-09-28 00:31:21 +0300 |
| commit | a6688200fb3f2608b80a419f8231647581a81ca0 (patch) | |
| tree | 43177b0329b3f9b9055042cb133c36ce4259ebd8 /src/wallet/api/wallet.cpp | |
| parent | aef92f27d91ccc4ebca64e7dc84103cbc2e9d8a9 (diff) | |
| download | monzero-core-a6688200fb3f2608b80a419f8231647581a81ca0.tar.gz monzero-core-a6688200fb3f2608b80a419f8231647581a81ca0.tar.xz monzero-core-a6688200fb3f2608b80a419f8231647581a81ca0.zip | |
libwallet_api: explicitly return 0 in Wallet::daemonBlockChainHeight()
on error
Diffstat (limited to 'src/wallet/api/wallet.cpp')
| -rw-r--r-- | src/wallet/api/wallet.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
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 = ""; |
