From 17f3ab464da4832861fc16b3886c098c424ed5dd Mon Sep 17 00:00:00 2001 From: Aki Date: Thu, 21 Oct 2021 19:42:58 +0200 Subject: Added client/server config with env variables --- library/src/library.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'library') diff --git a/library/src/library.cpp b/library/src/library.cpp index d5c51c7..18c3cff 100644 --- a/library/src/library.cpp +++ b/library/src/library.cpp @@ -7,7 +7,7 @@ namespace hwd static rpc::client & get_client() { - static rpc::client c("127.0.0.1", hwd::internal::default_port); + static rpc::client c(hwd::internal::host(), hwd::internal::port()); return c; } -- cgit v1.1