htlcswitch: add PermanentFailure to LinkFailureError

This commit is contained in:
Johan T. Halseth 2018-10-08 15:46:13 +02:00
parent fbb430ad82
commit a6d2263569
No known key found for this signature in database
GPG Key ID: 15BAADA29DA20D26

View File

@ -57,6 +57,10 @@ type LinkFailureError struct {
// because of this error. // because of this error.
ForceClose bool ForceClose bool
// PermanentFailure indicates whether this failure is permanent, and
// the channel should not be attempted loaded again.
PermanentFailure bool
// SendData is a byte slice that will be sent to the peer. If nil a // SendData is a byte slice that will be sent to the peer. If nil a
// generic error will be sent. // generic error will be sent.
SendData []byte SendData []byte