Skip to content

Commit

Permalink
feat(taiko-client): improve some comments in prover (#17668)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha authored Jun 24, 2024
1 parent 5f4ac44 commit e7afcfe
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,10 @@ func (s *ProofSubmitter) SubmitProof(
if err != nil {
return err
}
delayTimer := time.After(submissionDelay)
<-delayTimer
// Check again.
// Wait for the submission delay.
<-time.After(submissionDelay)

// Check the proof submission status again.
proofStatus, err := rpc.GetBlockProofStatus(
ctx,
s.rpc,
Expand Down

0 comments on commit e7afcfe

Please sign in to comment.