From 48252dd6a9f21757e130dc93d9e47e650163381b Mon Sep 17 00:00:00 2001 From: woodser <13068859+woodser@users.noreply.github.com> Date: Sun, 12 Oct 2025 08:55:11 -0400 Subject: [PATCH] add getter for daemon proxy --- src/wallet/wallet2.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 66c244bd1..1b2ac2d30 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -1559,6 +1559,7 @@ private: std::string get_keys_file() const; std::string get_daemon_address() const; const boost::optional& get_daemon_login() const { return m_daemon_login; } + std::string get_daemon_proxy() const { return m_proxy; } uint64_t get_daemon_blockchain_height(std::string& err); uint64_t get_daemon_blockchain_target_height(std::string& err); uint64_t get_daemon_adjusted_time();