Skip to content

Commit

Permalink
fix typos (0xPolygonHermez#1314)
Browse files Browse the repository at this point in the history
  • Loading branch information
ToniRamirezM authored Oct 20, 2022
1 parent f8f12c5 commit c1959fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aggregator/aggregator.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func NewAggregator(
func (a *Aggregator) resumeWIPProofGeneration(ctx context.Context, proof *state.Proof, prover proverClientInterface) {
err := a.getAndStoreProof(ctx, proof, prover)
if err != nil {
log.Warnf("Could not resume WIP Proof Generation por prover %v and batchNumber %v", *proof.Prover, proof.BatchNumber)
log.Warnf("Could not resume WIP Proof Generation for prover %v and batchNumber %v", *proof.Prover, proof.BatchNumber)
}
}

Expand Down Expand Up @@ -244,7 +244,7 @@ func (a *Aggregator) tryVerifyBatch(ctx context.Context, ticker *time.Ticker) {
return
}

log.Infof("Proof ID for batchNumber %d: %v", proof.BatchNumber, proof.ProofID)
log.Infof("Proof ID for batchNumber %d: %v", proof.BatchNumber, *proof.ProofID)

err = a.getAndStoreProof(ctx, proof, prover)
if err != nil {
Expand Down

0 comments on commit c1959fd

Please sign in to comment.