From 10c06ddac72559eb986868e69ae7f4861c48cd15 Mon Sep 17 00:00:00 2001 From: Ilya Kitaev Date: Wed, 13 Jul 2016 13:13:10 +0300 Subject: wallet_api: segfault on refresh fixed --- src/wallet/api/wallet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/wallet/api/wallet.cpp') diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp index f71cbd85b..15cffe2af 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -634,8 +634,8 @@ void WalletImpl::doRefresh() std::lock_guard guarg(m_refreshMutex2); try { m_wallet->refresh(); - if (m_walletListener) { - m_walletListener->refreshed(); + if (m_wallet2Callback->getListener()) { + m_wallet2Callback->getListener()->refreshed(); } } catch (const std::exception &e) { m_status = Status_Error; -- cgit v1.2.3