Skip to content

Commit e56a794

Browse files
committed
refactor: replace math.Min and math.Max with built-in min/max
Reference: #9451 (review) Signed-off-by: Eng Zer Jun <[email protected]>
1 parent 0899cee commit e56a794

File tree

4 files changed

+6
-21
lines changed

4 files changed

+6
-21
lines changed

contractcourt/commit_sweep_resolver.go

+1-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import (
44
"encoding/binary"
55
"fmt"
66
"io"
7-
"math"
87
"sync"
98

109
"github.com/btcsuite/btcd/btcutil"
@@ -391,9 +390,7 @@ func (c *commitSweepResolver) Launch() error {
391390
// expires after.
392391
unlockHeight := confHeight + c.commitResolution.MaturityDelay
393392
if c.hasCLTV() {
394-
unlockHeight = uint32(math.Max(
395-
float64(unlockHeight), float64(c.leaseExpiry),
396-
))
393+
unlockHeight = max(unlockHeight, c.leaseExpiry)
397394
}
398395

399396
// Update report now that we learned the confirmation height.

contractcourt/htlc_lease_resolver.go

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
package contractcourt
22

33
import (
4-
"math"
5-
64
"github.com/btcsuite/btcd/wire"
75
"github.com/lightningnetwork/lnd/chainntnfs"
86
"github.com/lightningnetwork/lnd/channeldb"
@@ -42,9 +40,7 @@ func (h *htlcLeaseResolver) deriveWaitHeight(csvDelay uint32,
4240

4341
waitHeight := uint32(commitSpend.SpendingHeight) + csvDelay - 1
4442
if h.hasCLTV() {
45-
waitHeight = uint32(math.Max(
46-
float64(waitHeight), float64(h.leaseExpiry),
47-
))
43+
waitHeight = max(waitHeight, h.leaseExpiry)
4844
}
4945

5046
return waitHeight

lnwallet/channel.go

+3-11
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import (
77
"crypto/sha256"
88
"errors"
99
"fmt"
10-
"math"
1110
"slices"
1211
"sync"
1312

@@ -9512,7 +9511,7 @@ func (lc *LightningChannel) MaxFeeRate(
95129511
// rather than us decreasing in local balance. The max fee rate is
95139512
// always floored by the current fee rate of the channel.
95149513
idealMaxFee := float64(baseBalance) * maxAllocation
9515-
maxFee := math.Max(float64(currentFee), idealMaxFee)
9514+
maxFee := max(float64(currentFee), idealMaxFee)
95169515
maxFeeAllocation := maxFee / float64(baseBalance)
95179516
maxFeeRate := chainfee.SatPerKWeight(maxFee / (float64(weight) / 1000))
95189517

@@ -9538,17 +9537,10 @@ func (lc *LightningChannel) IdealCommitFeeRate(netFeeRate, minRelayFeeRate,
95389537
switch lc.channelState.ChanType.HasAnchors() &&
95399538
maxFeeRate > maxAnchorCommitFeeRate {
95409539
case true:
9541-
commitFeeRate = chainfee.SatPerKWeight(
9542-
math.Min(
9543-
float64(netFeeRate),
9544-
float64(maxAnchorCommitFeeRate),
9545-
),
9546-
)
9540+
commitFeeRate = min(netFeeRate, maxAnchorCommitFeeRate)
95479541

95489542
case false:
9549-
commitFeeRate = chainfee.SatPerKWeight(
9550-
math.Min(float64(netFeeRate), float64(maxFeeRate)),
9551-
)
9543+
commitFeeRate = min(netFeeRate, maxFeeRate)
95529544
}
95539545

95549546
if commitFeeRate >= minRelayFeeRate {

sqldb/interfaces.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ func randRetryDelay(initialRetryDelay, maxRetryDelay time.Duration,
183183
// attempt. If we double something n times, that's the same as
184184
// multiplying the value with 2^n. We limit the power to 32 to avoid
185185
// overflows.
186-
factor := time.Duration(math.Pow(2, math.Min(float64(attempt), 32)))
186+
factor := time.Duration(math.Pow(2, min(float64(attempt), 32)))
187187
actualDelay := initialDelay * factor
188188

189189
// Cap the delay at the maximum configured value.

0 commit comments

Comments
 (0)