Skip to content

Commit

Permalink
Feat: lower submitter retry interval (#2645)
Browse files Browse the repository at this point in the history
  • Loading branch information
dwasse authored May 21, 2024
1 parent f9b6d45 commit cd9c482
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethergo/submitter/submitter.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func NewTransactionSubmitter(metrics metrics.Handler, signer signer.Signer, fetc

// GetRetryInterval returns the retry interval for the transaction submitter.
func (t *txSubmitterImpl) GetRetryInterval() time.Duration {
retryInterval := time.Second * 10
retryInterval := time.Second * 2
t.retryOnce.Do(func() {
retryInterval = time.Duration(0)
})
Expand Down

0 comments on commit cd9c482

Please sign in to comment.