fix: set node registry service in service constructor

This commit is contained in:
Derrick Hammer 2023-09-01 20:20:08 -04:00
parent c360b8b1ce
commit d9af5bd015
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 0 deletions

View File

@ -30,6 +30,7 @@ export class RegistryService {
constructor(node: S5Node) { constructor(node: S5Node) {
this.node = node; this.node = node;
this.logger = this.node.logger; this.logger = this.node.logger;
node.services.registry = this;
} }
async init(): Promise<void> { async init(): Promise<void> {