From da8867eaaea844835a2749b555b6da3380389ed9 Mon Sep 17 00:00:00 2001 From: Don Kackman Date: Mon, 4 Sep 2023 14:45:42 -0500 Subject: [PATCH] allow service ports to be overriden --- packages/chia-daemon/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/chia-daemon/index.js b/packages/chia-daemon/index.js index 50e7ac5..bda96bf 100644 --- a/packages/chia-daemon/index.js +++ b/packages/chia-daemon/index.js @@ -4,7 +4,7 @@ import { localDaemonConnection } from "./chia_daemon.js"; import { getPayloadDescriptor, makePayload } from "./payload_generator.js"; import createRpcProxy from "./rpc_proxy.js"; import loadUIConfig from "./config.js"; -import { createConnection } from "./connection_factory.js"; +import { createConnection, ServicePorts } from "./connection_factory.js"; export { ChiaDaemon, @@ -16,4 +16,5 @@ export { loadUIConfig, createConnection, createHttpsService, + ServicePorts, };