Skip to content

Commit

Permalink
fix public api message
Browse files Browse the repository at this point in the history
  • Loading branch information
igorls committed Nov 23, 2024
1 parent 77b56cf commit 0e4841c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ class HyperionApiServer {
const listeningAddress = this.fastify.server.address() as AddressInfo;
const apiUrl = `http://${listeningAddress.address}:${listeningAddress.port}`;
hLog(`${this.chain} Hyperion API ready and listening on ${apiUrl}`);
hLog(`API Public Url: http://${this.conf.api.server_name}`);
hLog(`API Public Url: ${this.conf.api.server_name}`);

this.alerts?.emit('ApiStart', {
hyperion_version: this.manager.current_version,
Expand Down

0 comments on commit 0e4841c

Please sign in to comment.