Skip to content

Commit

Permalink
hmm
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBratanov committed Jan 10, 2025
1 parent 0d9007e commit fc18768
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@ public SyncSource getOrCreateSyncSource(final Eth2Peer peer, final Spec spec) {
// The default configured value for requesting is less than what we'd accept to
// avoid requesting a very large number of blobs in a short amount of time, so
// choose the minimum of the two
return Math.min(
this.maxBlobSidecarsPerMinute, maxBlobSidecarsPerMinuteUpperBound);
return Math.min(maxBlobSidecarsPerMinute, maxBlobSidecarsPerMinuteUpperBound);
});
return syncSourcesByPeer.computeIfAbsent(
peer,
Expand Down

0 comments on commit fc18768

Please sign in to comment.