b220c47ce7
This reverts commit 4aa52d267f000f84caf912c62fc14a5b8e7cacb5. It turns out that the other implementations set values for this field which aren't based on the actual capacity of the channel. As a result, we'll no reject most of their channel offerings, since they may offer a value of a max `uint64` or something else hard coded that's above the size of the channel. As a result, we're reverting this check for now to maintain proper compatibility.
190 lines
6.5 KiB
Go
190 lines
6.5 KiB
Go
package lnwallet
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/btcsuite/btcd/chaincfg/chainhash"
|
|
"github.com/btcsuite/btcutil"
|
|
"github.com/lightningnetwork/lnd/lnwire"
|
|
)
|
|
|
|
// ReservationError wraps certain errors returned during channel reservation
|
|
// that can be sent across the wire to the remote peer. Errors not being
|
|
// ReservationErrors will not be sent to the remote in case of a failed channel
|
|
// reservation, as they may contain private information.
|
|
type ReservationError struct {
|
|
error
|
|
}
|
|
|
|
// A compile time check to ensure ReservationError implements the error
|
|
// interface.
|
|
var _ error = (*ReservationError)(nil)
|
|
|
|
// ErrZeroCapacity returns an error indicating the funder attempted to put zero
|
|
// funds into the channel.
|
|
func ErrZeroCapacity() ReservationError {
|
|
return ReservationError{
|
|
errors.New("zero channel funds"),
|
|
}
|
|
}
|
|
|
|
// ErrChainMismatch returns an error indicating that the initiator tried to
|
|
// open a channel for an unknown chain.
|
|
func ErrChainMismatch(knownChain,
|
|
unknownChain *chainhash.Hash) ReservationError {
|
|
return ReservationError{
|
|
fmt.Errorf("Unknown chain=%v. Supported chain=%v",
|
|
unknownChain, knownChain),
|
|
}
|
|
}
|
|
|
|
// ErrFunderBalanceDust returns an error indicating the initial balance of the
|
|
// funder is considered dust at the current commitment fee.
|
|
func ErrFunderBalanceDust(commitFee, funderBalance,
|
|
minBalance int64) ReservationError {
|
|
return ReservationError{
|
|
fmt.Errorf("Funder balance too small (%v) with fee=%v sat, "+
|
|
"minimum=%v sat required", funderBalance,
|
|
commitFee, minBalance),
|
|
}
|
|
}
|
|
|
|
// ErrCsvDelayTooLarge returns an error indicating that the CSV delay was to
|
|
// large to be accepted, along with the current max.
|
|
func ErrCsvDelayTooLarge(remoteDelay, maxDelay uint16) ReservationError {
|
|
return ReservationError{
|
|
fmt.Errorf("CSV delay too large: %v, max is %v",
|
|
remoteDelay, maxDelay),
|
|
}
|
|
}
|
|
|
|
// ErrChanReserveTooSmall returns an error indicating that the channel reserve
|
|
// the remote is requiring is too small to be accepted.
|
|
func ErrChanReserveTooSmall(reserve, dustLimit btcutil.Amount) ReservationError {
|
|
return ReservationError{
|
|
fmt.Errorf("channel reserve of %v sat is too small, min is %v "+
|
|
"sat", int64(reserve), int64(dustLimit)),
|
|
}
|
|
}
|
|
|
|
// ErrChanReserveTooLarge returns an error indicating that the chan reserve the
|
|
// remote is requiring, is too large to be accepted.
|
|
func ErrChanReserveTooLarge(reserve,
|
|
maxReserve btcutil.Amount) ReservationError {
|
|
return ReservationError{
|
|
fmt.Errorf("Channel reserve is too large: %v sat, max "+
|
|
"is %v sat", int64(reserve), int64(maxReserve)),
|
|
}
|
|
}
|
|
|
|
// ErrNonZeroPushAmount is returned by a remote peer that receives a
|
|
// FundingOpen request for a channel with non-zero push amount while
|
|
// they have 'rejectpush' enabled.
|
|
func ErrNonZeroPushAmount() ReservationError {
|
|
return ReservationError{errors.New("Non-zero push amounts are disabled")}
|
|
}
|
|
|
|
// ErrMinHtlcTooLarge returns an error indicating that the MinHTLC value the
|
|
// remote required is too large to be accepted.
|
|
func ErrMinHtlcTooLarge(minHtlc,
|
|
maxMinHtlc lnwire.MilliSatoshi) ReservationError {
|
|
return ReservationError{
|
|
fmt.Errorf("Minimum HTLC value is too large: %v, max is %v",
|
|
minHtlc, maxMinHtlc),
|
|
}
|
|
}
|
|
|
|
// ErrMaxHtlcNumTooLarge returns an error indicating that the 'max HTLCs in
|
|
// flight' value the remote required is too large to be accepted.
|
|
func ErrMaxHtlcNumTooLarge(maxHtlc, maxMaxHtlc uint16) ReservationError {
|
|
return ReservationError{
|
|
fmt.Errorf("maxHtlcs is too large: %d, max is %d",
|
|
maxHtlc, maxMaxHtlc),
|
|
}
|
|
}
|
|
|
|
// ErrMaxHtlcNumTooSmall returns an error indicating that the 'max HTLCs in
|
|
// flight' value the remote required is too small to be accepted.
|
|
func ErrMaxHtlcNumTooSmall(maxHtlc, minMaxHtlc uint16) ReservationError {
|
|
return ReservationError{
|
|
fmt.Errorf("maxHtlcs is too small: %d, min is %d",
|
|
maxHtlc, minMaxHtlc),
|
|
}
|
|
}
|
|
|
|
// ErrMaxValueInFlightTooSmall returns an error indicating that the 'max HTLC
|
|
// value in flight' the remote required is too small to be accepted.
|
|
func ErrMaxValueInFlightTooSmall(maxValInFlight,
|
|
minMaxValInFlight lnwire.MilliSatoshi) ReservationError {
|
|
return ReservationError{
|
|
fmt.Errorf("maxValueInFlight too small: %v, min is %v",
|
|
maxValInFlight, minMaxValInFlight),
|
|
}
|
|
}
|
|
|
|
// ErrNumConfsTooLarge returns an error indicating that the number of
|
|
// confirmations required for a channel is too large.
|
|
func ErrNumConfsTooLarge(numConfs, maxNumConfs uint32) error {
|
|
return ReservationError{
|
|
fmt.Errorf("minimum depth of %d is too large, max is %d",
|
|
numConfs, maxNumConfs),
|
|
}
|
|
}
|
|
|
|
// ErrChanTooSmall returns an error indicating that an incoming channel request
|
|
// was too small. We'll reject any incoming channels if they're below our
|
|
// configured value for the min channel size we'll accept.
|
|
func ErrChanTooSmall(chanSize, minChanSize btcutil.Amount) ReservationError {
|
|
return ReservationError{
|
|
fmt.Errorf("chan size of %v is below min chan size of %v",
|
|
chanSize, minChanSize),
|
|
}
|
|
}
|
|
|
|
// ErrHtlcIndexAlreadyFailed is returned when the HTLC index has already been
|
|
// failed, but has not been committed by our commitment state.
|
|
type ErrHtlcIndexAlreadyFailed uint64
|
|
|
|
// Error returns a message indicating the index that had already been failed.
|
|
func (e ErrHtlcIndexAlreadyFailed) Error() string {
|
|
return fmt.Sprintf("HTLC with ID %d has already been failed", e)
|
|
}
|
|
|
|
// ErrHtlcIndexAlreadySettled is returned when the HTLC index has already been
|
|
// settled, but has not been committed by our commitment state.
|
|
type ErrHtlcIndexAlreadySettled uint64
|
|
|
|
// Error returns a message indicating the index that had already been settled.
|
|
func (e ErrHtlcIndexAlreadySettled) Error() string {
|
|
return fmt.Sprintf("HTLC with ID %d has already been settled", e)
|
|
}
|
|
|
|
// ErrInvalidSettlePreimage is returned when trying to settle an HTLC, but the
|
|
// preimage does not correspond to the payment hash.
|
|
type ErrInvalidSettlePreimage struct {
|
|
preimage []byte
|
|
rhash []byte
|
|
}
|
|
|
|
// Error returns an error message with the offending preimage and intended
|
|
// payment hash.
|
|
func (e ErrInvalidSettlePreimage) Error() string {
|
|
return fmt.Sprintf("Invalid payment preimage %x for hash %x",
|
|
e.preimage, e.rhash)
|
|
}
|
|
|
|
// ErrUnknownHtlcIndex is returned when locally settling or failing an HTLC, but
|
|
// the HTLC index is not known to the channel. This typically indicates that the
|
|
// HTLC was already settled in a prior commitment.
|
|
type ErrUnknownHtlcIndex struct {
|
|
chanID lnwire.ShortChannelID
|
|
index uint64
|
|
}
|
|
|
|
// Error returns an error logging the channel and HTLC index that was unknown.
|
|
func (e ErrUnknownHtlcIndex) Error() string {
|
|
return fmt.Sprintf("No HTLC with ID %d in channel %v",
|
|
e.index, e.chanID)
|
|
}
|