2021-05-19 09:03:52 +02:00
|
|
|
package channeldb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2023-05-26 00:50:19 +02:00
|
|
|
"fmt"
|
2021-05-19 09:03:52 +02:00
|
|
|
"testing"
|
|
|
|
|
2023-02-07 20:10:20 +01:00
|
|
|
"github.com/lightningnetwork/lnd/lntypes"
|
|
|
|
"github.com/lightningnetwork/lnd/lnwire"
|
|
|
|
"github.com/lightningnetwork/lnd/routing/route"
|
2021-05-19 09:03:52 +02:00
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TestLazySessionKeyDeserialize tests that we can read htlc attempt session
|
|
|
|
// keys that were previously serialized as a private key as raw bytes.
|
|
|
|
func TestLazySessionKeyDeserialize(t *testing.T) {
|
|
|
|
var b bytes.Buffer
|
|
|
|
|
|
|
|
// Serialize as a private key.
|
|
|
|
err := WriteElements(&b, priv)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
// Deserialize into [btcec.PrivKeyBytesLen]byte.
|
|
|
|
attempt := HTLCAttemptInfo{}
|
|
|
|
err = ReadElements(&b, &attempt.sessionKey)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Zero(t, b.Len())
|
|
|
|
|
|
|
|
sessionKey := attempt.SessionKey()
|
|
|
|
require.Equal(t, priv, sessionKey)
|
|
|
|
}
|
2023-05-26 00:50:19 +02:00
|
|
|
|
|
|
|
// TestRegistrable checks the method `Registrable` behaves as expected for ALL
|
|
|
|
// possible payment statuses.
|
|
|
|
func TestRegistrable(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
status PaymentStatus
|
|
|
|
registryErr error
|
|
|
|
hasSettledHTLC bool
|
|
|
|
paymentFailed bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
status: StatusInitiated,
|
|
|
|
registryErr: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Test inflight status with no settled HTLC and no
|
|
|
|
// failed payment.
|
|
|
|
status: StatusInFlight,
|
|
|
|
registryErr: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Test inflight status with settled HTLC but no failed
|
|
|
|
// payment.
|
|
|
|
status: StatusInFlight,
|
|
|
|
registryErr: ErrPaymentPendingSettled,
|
|
|
|
hasSettledHTLC: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Test inflight status with no settled HTLC but failed
|
|
|
|
// payment.
|
|
|
|
status: StatusInFlight,
|
|
|
|
registryErr: ErrPaymentPendingFailed,
|
|
|
|
paymentFailed: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Test error state with settled HTLC and failed
|
|
|
|
// payment.
|
|
|
|
status: 0,
|
|
|
|
registryErr: ErrUnknownPaymentStatus,
|
|
|
|
hasSettledHTLC: true,
|
|
|
|
paymentFailed: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
status: StatusSucceeded,
|
|
|
|
registryErr: ErrPaymentAlreadySucceeded,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
status: StatusFailed,
|
|
|
|
registryErr: ErrPaymentAlreadyFailed,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
status: 0,
|
|
|
|
registryErr: ErrUnknownPaymentStatus,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, tc := range testCases {
|
|
|
|
i, tc := i, tc
|
|
|
|
|
|
|
|
p := &MPPayment{
|
|
|
|
Status: tc.status,
|
2023-03-06 08:48:24 +01:00
|
|
|
State: &MPPaymentState{
|
|
|
|
HasSettledHTLC: tc.hasSettledHTLC,
|
|
|
|
PaymentFailed: tc.paymentFailed,
|
|
|
|
},
|
2023-05-26 00:50:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
name := fmt.Sprintf("test_%d_%s", i, p.Status.String())
|
|
|
|
t.Run(name, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
err := p.Registrable()
|
|
|
|
require.ErrorIs(t, err, tc.registryErr,
|
|
|
|
"registrable under state %v", tc.status)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2023-02-07 20:10:20 +01:00
|
|
|
|
|
|
|
// TestPaymentSetState checks that the method setState creates the
|
|
|
|
// MPPaymentState as expected.
|
|
|
|
func TestPaymentSetState(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
// Create a test preimage and failure reason.
|
|
|
|
preimage := lntypes.Preimage{1}
|
|
|
|
failureReasonError := FailureReasonError
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
name string
|
|
|
|
payment *MPPayment
|
|
|
|
totalAmt int
|
|
|
|
|
|
|
|
expectedState *MPPaymentState
|
|
|
|
errExpected error
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
// Test that when the sentAmt exceeds totalAmount, the
|
|
|
|
// error is returned.
|
|
|
|
name: "amount exceeded error",
|
|
|
|
// SentAmt returns 90, 10
|
|
|
|
// TerminalInfo returns non-nil, nil
|
|
|
|
// InFlightHTLCs returns 0
|
|
|
|
payment: &MPPayment{
|
|
|
|
HTLCs: []HTLCAttempt{
|
|
|
|
makeSettledAttempt(100, 10, preimage),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
totalAmt: 1,
|
|
|
|
errExpected: ErrSentExceedsTotal,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Test that when the htlc is failed, the fee is not
|
|
|
|
// used.
|
|
|
|
name: "fee excluded for failed htlc",
|
|
|
|
payment: &MPPayment{
|
|
|
|
// SentAmt returns 90, 10
|
|
|
|
// TerminalInfo returns nil, nil
|
|
|
|
// InFlightHTLCs returns 1
|
|
|
|
HTLCs: []HTLCAttempt{
|
|
|
|
makeActiveAttempt(100, 10),
|
|
|
|
makeFailedAttempt(100, 10),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
totalAmt: 1000,
|
|
|
|
expectedState: &MPPaymentState{
|
|
|
|
NumAttemptsInFlight: 1,
|
|
|
|
RemainingAmt: 1000 - 90,
|
|
|
|
FeesPaid: 10,
|
2023-03-06 08:48:24 +01:00
|
|
|
HasSettledHTLC: false,
|
|
|
|
PaymentFailed: false,
|
2023-02-07 20:10:20 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Test when the payment is settled, the state should
|
|
|
|
// be marked as terminated.
|
|
|
|
name: "payment settled",
|
|
|
|
// SentAmt returns 90, 10
|
|
|
|
// TerminalInfo returns non-nil, nil
|
|
|
|
// InFlightHTLCs returns 0
|
|
|
|
payment: &MPPayment{
|
|
|
|
HTLCs: []HTLCAttempt{
|
|
|
|
makeSettledAttempt(100, 10, preimage),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
totalAmt: 1000,
|
|
|
|
expectedState: &MPPaymentState{
|
|
|
|
NumAttemptsInFlight: 0,
|
|
|
|
RemainingAmt: 1000 - 90,
|
|
|
|
FeesPaid: 10,
|
2023-03-06 08:48:24 +01:00
|
|
|
HasSettledHTLC: true,
|
|
|
|
PaymentFailed: false,
|
2023-02-07 20:10:20 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Test when the payment is failed, the state should be
|
|
|
|
// marked as terminated.
|
|
|
|
name: "payment failed",
|
|
|
|
// SentAmt returns 0, 0
|
|
|
|
// TerminalInfo returns nil, non-nil
|
|
|
|
// InFlightHTLCs returns 0
|
|
|
|
payment: &MPPayment{
|
|
|
|
FailureReason: &failureReasonError,
|
|
|
|
},
|
|
|
|
totalAmt: 1000,
|
|
|
|
expectedState: &MPPaymentState{
|
|
|
|
NumAttemptsInFlight: 0,
|
|
|
|
RemainingAmt: 1000,
|
|
|
|
FeesPaid: 0,
|
2023-03-06 08:48:24 +01:00
|
|
|
HasSettledHTLC: false,
|
|
|
|
PaymentFailed: true,
|
2023-02-07 20:10:20 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
tc := tc
|
2023-03-06 08:48:24 +01:00
|
|
|
|
2023-02-07 20:10:20 +01:00
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
// Attach the payment info.
|
|
|
|
info := &PaymentCreationInfo{
|
|
|
|
Value: lnwire.MilliSatoshi(tc.totalAmt),
|
|
|
|
}
|
|
|
|
tc.payment.Info = info
|
|
|
|
|
|
|
|
// Call the method that updates the payment state.
|
|
|
|
err := tc.payment.setState()
|
|
|
|
require.ErrorIs(t, err, tc.errExpected)
|
|
|
|
|
|
|
|
require.Equal(
|
|
|
|
t, tc.expectedState, tc.payment.State,
|
|
|
|
"state not updated as expected",
|
|
|
|
)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-06 08:48:30 +01:00
|
|
|
// TestNeedWaitAttempts checks whether we need to wait for the results of the
|
|
|
|
// HTLC attempts against ALL possible payment statuses.
|
|
|
|
func TestNeedWaitAttempts(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
status PaymentStatus
|
|
|
|
remainingAmt lnwire.MilliSatoshi
|
|
|
|
hasSettledHTLC bool
|
|
|
|
hasFailureReason bool
|
|
|
|
needWait bool
|
|
|
|
expectedErr error
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
// For a newly created payment we don't need to wait
|
|
|
|
// for results.
|
|
|
|
status: StatusInitiated,
|
|
|
|
remainingAmt: 1000,
|
|
|
|
needWait: false,
|
|
|
|
expectedErr: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// With HTLCs inflight we don't need to wait when the
|
|
|
|
// remainingAmt is not zero and we have no settled
|
|
|
|
// HTLCs.
|
|
|
|
status: StatusInFlight,
|
|
|
|
remainingAmt: 1000,
|
|
|
|
needWait: false,
|
|
|
|
expectedErr: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// With HTLCs inflight we need to wait when the
|
|
|
|
// remainingAmt is not zero but we have settled HTLCs.
|
|
|
|
status: StatusInFlight,
|
|
|
|
remainingAmt: 1000,
|
|
|
|
hasSettledHTLC: true,
|
|
|
|
needWait: true,
|
|
|
|
expectedErr: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// With HTLCs inflight we need to wait when the
|
|
|
|
// remainingAmt is not zero and the payment is failed.
|
|
|
|
status: StatusInFlight,
|
|
|
|
remainingAmt: 1000,
|
|
|
|
needWait: true,
|
|
|
|
hasFailureReason: true,
|
|
|
|
expectedErr: nil,
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
// With the payment settled, but the remainingAmt is
|
|
|
|
// not zero, we have an error state.
|
|
|
|
status: StatusSucceeded,
|
|
|
|
remainingAmt: 1000,
|
|
|
|
needWait: false,
|
|
|
|
expectedErr: ErrPaymentInternal,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Payment is in terminal state, no need to wait.
|
|
|
|
status: StatusFailed,
|
|
|
|
remainingAmt: 1000,
|
|
|
|
needWait: false,
|
|
|
|
expectedErr: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// A newly created payment with zero remainingAmt
|
|
|
|
// indicates an error.
|
|
|
|
status: StatusInitiated,
|
|
|
|
remainingAmt: 0,
|
|
|
|
needWait: false,
|
|
|
|
expectedErr: ErrPaymentInternal,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// With zero remainingAmt we must wait for the results.
|
|
|
|
status: StatusInFlight,
|
|
|
|
remainingAmt: 0,
|
|
|
|
needWait: true,
|
|
|
|
expectedErr: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Payment is terminated, no need to wait for results.
|
|
|
|
status: StatusSucceeded,
|
|
|
|
remainingAmt: 0,
|
|
|
|
needWait: false,
|
|
|
|
expectedErr: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Payment is terminated, no need to wait for results.
|
|
|
|
status: StatusFailed,
|
|
|
|
remainingAmt: 0,
|
|
|
|
needWait: false,
|
|
|
|
expectedErr: ErrPaymentInternal,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Payment is in an unknown status, return an error.
|
|
|
|
status: 0,
|
|
|
|
remainingAmt: 0,
|
|
|
|
needWait: false,
|
|
|
|
expectedErr: ErrUnknownPaymentStatus,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Payment is in an unknown status, return an error.
|
|
|
|
status: 0,
|
|
|
|
remainingAmt: 1000,
|
|
|
|
needWait: false,
|
|
|
|
expectedErr: ErrUnknownPaymentStatus,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
tc := tc
|
|
|
|
|
|
|
|
p := &MPPayment{
|
|
|
|
Info: &PaymentCreationInfo{
|
|
|
|
PaymentIdentifier: [32]byte{1, 2, 3},
|
|
|
|
},
|
|
|
|
Status: tc.status,
|
|
|
|
State: &MPPaymentState{
|
|
|
|
RemainingAmt: tc.remainingAmt,
|
|
|
|
HasSettledHTLC: tc.hasSettledHTLC,
|
|
|
|
PaymentFailed: tc.hasFailureReason,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
name := fmt.Sprintf("status=%s|remainingAmt=%v|"+
|
|
|
|
"settledHTLC=%v|failureReason=%v", tc.status,
|
|
|
|
tc.remainingAmt, tc.hasSettledHTLC, tc.hasFailureReason)
|
|
|
|
|
|
|
|
t.Run(name, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
result, err := p.NeedWaitAttempts()
|
|
|
|
require.ErrorIs(t, err, tc.expectedErr)
|
|
|
|
require.Equalf(t, tc.needWait, result, "status=%v, "+
|
|
|
|
"remainingAmt=%v", tc.status, tc.remainingAmt)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-07 17:48:22 +01:00
|
|
|
// TestAllowMoreAttempts checks whether more attempts can be created against
|
|
|
|
// ALL possible payment statuses.
|
|
|
|
func TestAllowMoreAttempts(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
status PaymentStatus
|
|
|
|
remainingAmt lnwire.MilliSatoshi
|
|
|
|
hasSettledHTLC bool
|
|
|
|
paymentFailed bool
|
|
|
|
allowMore bool
|
|
|
|
expectedErr error
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
// A newly created payment with zero remainingAmt
|
|
|
|
// indicates an error.
|
|
|
|
status: StatusInitiated,
|
|
|
|
remainingAmt: 0,
|
|
|
|
allowMore: false,
|
|
|
|
expectedErr: ErrPaymentInternal,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// With zero remainingAmt we don't allow more HTLC
|
|
|
|
// attempts.
|
|
|
|
status: StatusInFlight,
|
|
|
|
remainingAmt: 0,
|
|
|
|
allowMore: false,
|
|
|
|
expectedErr: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// With zero remainingAmt we don't allow more HTLC
|
|
|
|
// attempts.
|
|
|
|
status: StatusSucceeded,
|
|
|
|
remainingAmt: 0,
|
|
|
|
allowMore: false,
|
|
|
|
expectedErr: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// With zero remainingAmt we don't allow more HTLC
|
|
|
|
// attempts.
|
|
|
|
status: StatusFailed,
|
|
|
|
remainingAmt: 0,
|
|
|
|
allowMore: false,
|
|
|
|
expectedErr: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// With zero remainingAmt and settled HTLCs we don't
|
|
|
|
// allow more HTLC attempts.
|
|
|
|
status: StatusInFlight,
|
|
|
|
remainingAmt: 0,
|
|
|
|
hasSettledHTLC: true,
|
|
|
|
allowMore: false,
|
|
|
|
expectedErr: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// With zero remainingAmt and failed payment we don't
|
|
|
|
// allow more HTLC attempts.
|
|
|
|
status: StatusInFlight,
|
|
|
|
remainingAmt: 0,
|
|
|
|
paymentFailed: true,
|
|
|
|
allowMore: false,
|
|
|
|
expectedErr: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// With zero remainingAmt and both settled HTLCs and
|
|
|
|
// failed payment, we don't allow more HTLC attempts.
|
|
|
|
status: StatusInFlight,
|
|
|
|
remainingAmt: 0,
|
|
|
|
hasSettledHTLC: true,
|
|
|
|
paymentFailed: true,
|
|
|
|
allowMore: false,
|
|
|
|
expectedErr: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// A newly created payment can have more attempts.
|
|
|
|
status: StatusInitiated,
|
|
|
|
remainingAmt: 1000,
|
|
|
|
allowMore: true,
|
|
|
|
expectedErr: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// With HTLCs inflight we can have more attempts when
|
|
|
|
// the remainingAmt is not zero and we have neither
|
|
|
|
// failed payment or settled HTLCs.
|
|
|
|
status: StatusInFlight,
|
|
|
|
remainingAmt: 1000,
|
|
|
|
allowMore: true,
|
|
|
|
expectedErr: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// With HTLCs inflight we cannot have more attempts
|
|
|
|
// though the remainingAmt is not zero but we have
|
|
|
|
// settled HTLCs.
|
|
|
|
status: StatusInFlight,
|
|
|
|
remainingAmt: 1000,
|
|
|
|
hasSettledHTLC: true,
|
|
|
|
allowMore: false,
|
|
|
|
expectedErr: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// With HTLCs inflight we cannot have more attempts
|
|
|
|
// though the remainingAmt is not zero but we have
|
|
|
|
// failed payment.
|
|
|
|
status: StatusInFlight,
|
|
|
|
remainingAmt: 1000,
|
|
|
|
paymentFailed: true,
|
|
|
|
allowMore: false,
|
|
|
|
expectedErr: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// With HTLCs inflight we cannot have more attempts
|
|
|
|
// though the remainingAmt is not zero but we have
|
|
|
|
// settled HTLCs and failed payment.
|
|
|
|
status: StatusInFlight,
|
|
|
|
remainingAmt: 1000,
|
|
|
|
hasSettledHTLC: true,
|
|
|
|
paymentFailed: true,
|
|
|
|
allowMore: false,
|
|
|
|
expectedErr: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// With the payment settled, but the remainingAmt is
|
|
|
|
// not zero, we have an error state.
|
|
|
|
status: StatusSucceeded,
|
|
|
|
remainingAmt: 1000,
|
|
|
|
hasSettledHTLC: true,
|
|
|
|
allowMore: false,
|
|
|
|
expectedErr: ErrPaymentInternal,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// With the payment failed with no inflight HTLCs, we
|
|
|
|
// don't allow more attempts to be made.
|
|
|
|
status: StatusFailed,
|
|
|
|
remainingAmt: 1000,
|
|
|
|
paymentFailed: true,
|
|
|
|
allowMore: false,
|
|
|
|
expectedErr: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// With the payment in an unknown state, we don't allow
|
|
|
|
// more attempts to be made.
|
|
|
|
status: 0,
|
|
|
|
remainingAmt: 1000,
|
|
|
|
allowMore: false,
|
|
|
|
expectedErr: nil,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, tc := range testCases {
|
|
|
|
tc := tc
|
|
|
|
|
|
|
|
p := &MPPayment{
|
|
|
|
Info: &PaymentCreationInfo{
|
|
|
|
PaymentIdentifier: [32]byte{1, 2, 3},
|
|
|
|
},
|
|
|
|
Status: tc.status,
|
|
|
|
State: &MPPaymentState{
|
|
|
|
RemainingAmt: tc.remainingAmt,
|
|
|
|
HasSettledHTLC: tc.hasSettledHTLC,
|
|
|
|
PaymentFailed: tc.paymentFailed,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
name := fmt.Sprintf("test_%d|status=%s|remainingAmt=%v", i,
|
|
|
|
tc.status, tc.remainingAmt)
|
|
|
|
|
|
|
|
t.Run(name, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
result, err := p.AllowMoreAttempts()
|
|
|
|
require.ErrorIs(t, err, tc.expectedErr)
|
|
|
|
require.Equalf(t, tc.allowMore, result, "status=%v, "+
|
|
|
|
"remainingAmt=%v", tc.status, tc.remainingAmt)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-07 20:10:20 +01:00
|
|
|
func makeActiveAttempt(total, fee int) HTLCAttempt {
|
|
|
|
return HTLCAttempt{
|
|
|
|
HTLCAttemptInfo: makeAttemptInfo(total, total-fee),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func makeSettledAttempt(total, fee int,
|
|
|
|
preimage lntypes.Preimage) HTLCAttempt {
|
|
|
|
|
|
|
|
return HTLCAttempt{
|
|
|
|
HTLCAttemptInfo: makeAttemptInfo(total, total-fee),
|
|
|
|
Settle: &HTLCSettleInfo{Preimage: preimage},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func makeFailedAttempt(total, fee int) HTLCAttempt {
|
|
|
|
return HTLCAttempt{
|
|
|
|
HTLCAttemptInfo: makeAttemptInfo(total, total-fee),
|
|
|
|
Failure: &HTLCFailInfo{
|
|
|
|
Reason: HTLCFailInternal,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func makeAttemptInfo(total, amtForwarded int) HTLCAttemptInfo {
|
|
|
|
hop := &route.Hop{AmtToForward: lnwire.MilliSatoshi(amtForwarded)}
|
|
|
|
return HTLCAttemptInfo{
|
|
|
|
Route: route.Route{
|
|
|
|
TotalAmount: lnwire.MilliSatoshi(total),
|
|
|
|
Hops: []*route.Hop{hop},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|