diff --git a/autopilot/simple_graph.go b/autopilot/simple_graph.go index c2dc7448f..4d294b3f2 100644 --- a/autopilot/simple_graph.go +++ b/autopilot/simple_graph.go @@ -85,9 +85,7 @@ func NewSimpleGraph(g ChannelGraph) (*SimpleGraph, error) { func maxVal(mapping map[int]uint32) uint32 { maxValue := uint32(0) for _, value := range mapping { - if maxValue < value { - maxValue = value - } + maxValue = max(maxValue, value) } return maxValue } diff --git a/lntypes/comparison.go b/lntypes/comparison.go deleted file mode 100644 index bffb1a55b..000000000 --- a/lntypes/comparison.go +++ /dev/null @@ -1,26 +0,0 @@ -package lntypes - -import "golang.org/x/exp/constraints" - -// Number defines a type constraint for numbers. -type Number interface { - constraints.Integer | constraints.Float -} - -// Max returns the greater of the two inputs. -func Max[N Number](op1 N, op2 N) N { - if op1 > op2 { - return op1 - } - - return op2 -} - -// Min returns the lesser of the two inputs. -func Min[N Number](op1 N, op2 N) N { - if op1 < op2 { - return op1 - } - - return op2 -} diff --git a/lntypes/comparison_test.go b/lntypes/comparison_test.go deleted file mode 100644 index 61bf35893..000000000 --- a/lntypes/comparison_test.go +++ /dev/null @@ -1,25 +0,0 @@ -package lntypes - -import ( - "testing" - - "github.com/stretchr/testify/require" -) - -// TestMin tests getting correct minimal numbers. -func TestMin(t *testing.T) { - t.Parallel() - - require.Equal(t, 1, Min(1, 1)) - require.Equal(t, 1, Min(1, 2)) - require.Equal(t, 1.5, Min(1.5, 2.5)) -} - -// TestMax tests getting correct maximal numbers. -func TestMax(t *testing.T) { - t.Parallel() - - require.Equal(t, 1, Max(1, 1)) - require.Equal(t, 2, Max(1, 2)) - require.Equal(t, 2.5, Max(1.5, 2.5)) -} diff --git a/routing/unified_edges.go b/routing/unified_edges.go index c0e1c1044..b92010da0 100644 --- a/routing/unified_edges.go +++ b/routing/unified_edges.go @@ -6,7 +6,6 @@ import ( "github.com/btcsuite/btcd/btcutil" graphdb "github.com/lightningnetwork/lnd/graph/db" "github.com/lightningnetwork/lnd/graph/db/models" - "github.com/lightningnetwork/lnd/lntypes" "github.com/lightningnetwork/lnd/lnwire" "github.com/lightningnetwork/lnd/routing/route" ) @@ -379,13 +378,11 @@ func (u *edgeUnifier) getEdgeNetwork(netAmtReceived lnwire.MilliSatoshi, capMsat = edge.policy.MaxHTLC } - maxCapMsat = lntypes.Max(capMsat, maxCapMsat) + maxCapMsat = max(capMsat, maxCapMsat) // Track the maximum time lock of all channels that are // candidate for non-strict forwarding at the routing node. - maxTimelock = lntypes.Max( - maxTimelock, edge.policy.TimeLockDelta, - ) + maxTimelock = max(maxTimelock, edge.policy.TimeLockDelta) outboundFee := int64(edge.policy.ComputeFee(amt)) fee := outboundFee + inboundFee @@ -440,10 +437,10 @@ func (u *edgeUnifier) getEdgeNetwork(netAmtReceived lnwire.MilliSatoshi, // minAmt returns the minimum amount that can be forwarded on this connection. func (u *edgeUnifier) minAmt() lnwire.MilliSatoshi { - min := lnwire.MaxMilliSatoshi + minAmount := lnwire.MaxMilliSatoshi for _, edge := range u.edges { - min = lntypes.Min(min, edge.policy.MinHTLC) + minAmount = min(minAmount, edge.policy.MinHTLC) } - return min + return minAmount } diff --git a/watchtower/wtdb/migration4/range_index.go b/watchtower/wtdb/migration4/range_index.go index 9386834e0..afeb98242 100644 --- a/watchtower/wtdb/migration4/range_index.go +++ b/watchtower/wtdb/migration4/range_index.go @@ -74,24 +74,6 @@ func (a *RangeIndex) addRange(start, end uint64) error { "than end height %d", start, end) } - // min is a helper closure that will return the minimum of two uint64s. - min := func(a, b uint64) uint64 { - if a < b { - return a - } - - return b - } - - // max is a helper closure that will return the maximum of two uint64s. - max := func(a, b uint64) uint64 { - if a > b { - return a - } - - return b - } - // Collect the ranges that fall before and after the new range along // with the start and end values of the new range. var before, after []rangeItem diff --git a/watchtower/wtdb/migration8/range_index.go b/watchtower/wtdb/migration8/range_index.go index 94f0e2030..4f870c211 100644 --- a/watchtower/wtdb/migration8/range_index.go +++ b/watchtower/wtdb/migration8/range_index.go @@ -74,24 +74,6 @@ func (a *RangeIndex) addRange(start, end uint64) error { "than end height %d", start, end) } - // min is a helper closure that will return the minimum of two uint64s. - min := func(a, b uint64) uint64 { - if a < b { - return a - } - - return b - } - - // max is a helper closure that will return the maximum of two uint64s. - max := func(a, b uint64) uint64 { - if a > b { - return a - } - - return b - } - // Collect the ranges that fall before and after the new range along // with the start and end values of the new range. var before, after []rangeItem diff --git a/watchtower/wtdb/range_index.go b/watchtower/wtdb/range_index.go index 268b603c7..3a063c7dc 100644 --- a/watchtower/wtdb/range_index.go +++ b/watchtower/wtdb/range_index.go @@ -74,24 +74,6 @@ func (a *RangeIndex) addRange(start, end uint64) error { "than end height %d", start, end) } - // min is a helper closure that will return the minimum of two uint64s. - min := func(a, b uint64) uint64 { - if a < b { - return a - } - - return b - } - - // max is a helper closure that will return the maximum of two uint64s. - max := func(a, b uint64) uint64 { - if a > b { - return a - } - - return b - } - // Collect the ranges that fall before and after the new range along // with the start and end values of the new range. var before, after []rangeItem