aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/wallet_manager.cpp
diff options
context:
space:
mode:
authorAlexander Blair <snipa@jagtech.io>2020-08-16 12:52:21 -0700
committerAlexander Blair <snipa@jagtech.io>2020-08-16 12:52:21 -0700
commit01b512f3a91f2080f4fae0abfd19f3e0e1dc53e9 (patch)
treea8e7137064dd618b38bee9e35e6d989c77582001 /src/wallet/api/wallet_manager.cpp
parentf40b9e34e0b74f499f7b8c35fa3acdec7b0fbc1c (diff)
parent76c16822d09fbebbc792dc999ea2d3432a63253a (diff)
downloadmonzero-core-01b512f3a91f2080f4fae0abfd19f3e0e1dc53e9.tar.gz
monzero-core-01b512f3a91f2080f4fae0abfd19f3e0e1dc53e9.tar.xz
monzero-core-01b512f3a91f2080f4fae0abfd19f3e0e1dc53e9.zip
Merge pull request #6716
76c16822d wallet2_api: implement runtime proxy configuration (xiphon)
Diffstat (limited to 'src/wallet/api/wallet_manager.cpp')
-rw-r--r--src/wallet/api/wallet_manager.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wallet/api/wallet_manager.cpp b/src/wallet/api/wallet_manager.cpp
index 69d17eb02..900fe91e5 100644
--- a/src/wallet/api/wallet_manager.cpp
+++ b/src/wallet/api/wallet_manager.cpp
@@ -375,6 +375,10 @@ std::tuple<bool, std::string, std::string, std::string, std::string> WalletManag
return std::make_tuple(false, "", "", "", "");
}
+bool WalletManagerImpl::setProxy(const std::string &address)
+{
+ return m_http_client.set_proxy(address);
+}
///////////////////// WalletManagerFactory implementation //////////////////////
WalletManager *WalletManagerFactory::getWalletManager()