Skip to content

Commit

Permalink
Merge branch 'master' into minor-fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tsahee committed Jun 3, 2024
2 parents 026b3ba + 64ae80c commit 9050e2d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion execution/gethexec/sequencer.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ var DefaultSequencerConfig = SequencerConfig{
NonceFailureCacheExpiry: time.Second,
ExpectedSurplusSoftThreshold: "default",
ExpectedSurplusHardThreshold: "default",
EnableProfiling: true,
EnableProfiling: false,
}

var TestSequencerConfig = SequencerConfig{
Expand Down
2 changes: 1 addition & 1 deletion util/arbmath/math.go
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ func SaturatingUSub[T Unsigned](a, b T) T {
return a - b
}

// SaturatingMul multiply two integers without over/underflow
// SaturatingUMul multiply two integers without over/underflow
func SaturatingUMul[T Unsigned](a, b T) T {
product := a * b
if b != 0 && product/b != a {
Expand Down
2 changes: 1 addition & 1 deletion wsbroadcastserver/clientconnection.go
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ func (cc *ClientConnection) Receive(ctx context.Context, timeout time.Duration)
return msg, op, err
}

// readRequests reads json-rpc request from connection.
// readRequest reads json-rpc request from connection.
func (cc *ClientConnection) readRequest(ctx context.Context, timeout time.Duration) ([]byte, ws.OpCode, error) {
cc.ioMutex.Lock()
defer cc.ioMutex.Unlock()
Expand Down

0 comments on commit 9050e2d

Please sign in to comment.