Skip to content

Commit 5f64280

Browse files
committed
sweep: add new error ErrZeroFeeRateDelta
1 parent 6c2e8b9 commit 5f64280

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

sweep/fee_function.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ var (
1414
// ErrMaxPosition is returned when trying to increase the position of
1515
// the fee function while it's already at its max.
1616
ErrMaxPosition = errors.New("position already at max")
17+
18+
// ErrZeroFeeRateDelta is returned when the fee rate delta is zero.
19+
ErrZeroFeeRateDelta = errors.New("fee rate delta is zero")
1720
)
1821

1922
// mSatPerKWeight represents a fee rate in msat/kw.
@@ -169,7 +172,7 @@ func NewLinearFeeFunction(maxFeeRate chainfee.SatPerKWeight,
169172
"endingFeeRate=%v, width=%v, delta=%v", start, end,
170173
l.width, l.deltaFeeRate)
171174

172-
return nil, fmt.Errorf("fee rate delta is zero")
175+
return nil, ErrZeroFeeRateDelta
173176
}
174177

175178
// Attach the calculated values to the fee function.

0 commit comments

Comments
 (0)