From 3678ba2154bd5d785dca2c019c90db0279b638ba Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Mon, 7 Sep 2020 20:59:44 +0200 Subject: [PATCH] fixed connectivity for simplewallet in srv mode --- src/wallet/wallet2.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index ad616c6b..33e18f82 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -155,6 +155,7 @@ void wallet2::init(const std::string& daemon_address) { m_miner_text_info = PROJECT_VERSION_LONG; m_core_proxy->set_connection_addr(daemon_address); + m_core_proxy->check_connection(); } //---------------------------------------------------------------------------------------------------- bool wallet2::set_core_proxy(const std::shared_ptr& proxy)