Skip to content

Commit

Permalink
nit cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenButtolph committed Feb 22, 2025
1 parent 664e230 commit eafacdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/evm/upgrade/acp176/acp176.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func (s *State) UpdateTargetExcess(desiredTargetExcess gas.Gas) {
)

// Ensure the gas capacity does not exceed the maximum capacity.
newMaxCapacity := mul(newTargetPerSecond, targetToMaxCapacity)
newMaxCapacity := mul(newTargetPerSecond, targetToMaxCapacity) // C
s.Gas.Capacity = min(s.Gas.Capacity, newMaxCapacity)
}

Expand Down

0 comments on commit eafacdb

Please sign in to comment.