Skip to content

Commit

Permalink
smaller backoff
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaytonNorthey92 committed Aug 27, 2024
1 parent ea6575d commit 9a68da0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/bfg/bfg.go
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ func (s *Server) handleOneBroadcastRequest(ctx context.Context, highPriority boo
// if there are no new serialized txs, backoff a bit
if serializedTx == nil {
select {
case <-time.After(5 * time.Second):
case <-time.After(1 * time.Second):
return
case <-ctx.Done():
return
Expand Down

0 comments on commit 9a68da0

Please sign in to comment.