From cb23be8f4d0f67fd95eff7dd46f4b1f93682193d Mon Sep 17 00:00:00 2001 From: Jaquee Date: Tue, 24 Oct 2017 19:07:10 +0200 Subject: [PATCH] Wallet API: always use approximate calc of blockchain height --- src/wallet/api/wallet.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp index c0974f88..d247bac9 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -1387,13 +1387,6 @@ bool WalletImpl::doInit(const string &daemon_address, uint64_t upper_transaction if (!m_wallet->init(daemon_address, m_daemon_login, upper_transaction_size_limit)) return false; - // in case new wallet, this will force fast-refresh (pulling hashes instead of blocks) - // If daemon isn't synced a calculated block height will be used instead - if (isNewWallet() && daemonSynced()) { - LOG_PRINT_L2(__FUNCTION__ << ":New Wallet - fast refresh until " << daemonBlockChainHeight()); - m_wallet->set_refresh_from_block_height(daemonBlockChainHeight()); - } - if (m_rebuildWalletCache) LOG_PRINT_L2(__FUNCTION__ << ": Rebuilding wallet cache, fast refresh until block " << m_wallet->get_refresh_from_block_height());