Skip to content

Commit

Permalink
make submitRound private
Browse files Browse the repository at this point in the history
  • Loading branch information
webmaster128 committed Aug 24, 2023
1 parent b81fa9e commit 55b702d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion submitter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class Submitter {
await Promise.all(rounds.map((round) => this.submitRound(round)));
}

public async submitRound(round: number): Promise<void> {
private async submitRound(round: number): Promise<void> {
const signature = await this.cache.get(round);
await this.submit({ round, signature });
return;
Expand Down

0 comments on commit 55b702d

Please sign in to comment.