fix: signRegistryEntry accidentally recursive

This commit is contained in:
Derrick Hammer 2023-09-11 13:15:18 -04:00
parent e2e269483d
commit e03eb41e96
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ export class RegistryService {
data: Uint8Array;
revision: number;
}): SignedRegistryEntry {
return this.signRegistryEntry({ kp, data, revision });
return signRegistryEntry({ kp, data, revision });
}
async getFromDB(pk: Uint8Array): Promise<SignedRegistryEntry | null> {