From 55b702d7b6d6432f1e1eb075d02c5389931adce9 Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Wed, 23 Aug 2023 22:49:16 +0200 Subject: [PATCH] make submitRound private --- submitter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submitter.ts b/submitter.ts index 53921f2..0a7f91f 100644 --- a/submitter.ts +++ b/submitter.ts @@ -67,7 +67,7 @@ export class Submitter { await Promise.all(rounds.map((round) => this.submitRound(round))); } - public async submitRound(round: number): Promise { + private async submitRound(round: number): Promise { const signature = await this.cache.get(round); await this.submit({ round, signature }); return;