fix: await not needed
This commit is contained in:
parent
9119043051
commit
9645105ec3
|
@ -164,7 +164,7 @@ export class RegistryService {
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
const revision = Math.round(Date.now() / 1000);
|
const revision = Math.round(Date.now() / 1000);
|
||||||
|
|
||||||
const sre: SignedRegistryEntry = await this.signRegistryEntry({
|
const sre: SignedRegistryEntry = this.signRegistryEntry({
|
||||||
kp: keyPair,
|
kp: keyPair,
|
||||||
data,
|
data,
|
||||||
revision,
|
revision,
|
||||||
|
|
Loading…
Reference in New Issue