2017-03-09 00:32:11 +01:00
|
|
|
package lnwire
|
|
|
|
|
|
|
|
import (
|
2021-06-17 08:17:30 +02:00
|
|
|
"bytes"
|
2017-03-09 00:32:11 +01:00
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Shutdown is sent by either side in order to initiate the cooperative closure
|
|
|
|
// of a channel. This message is sparse as both sides implicitly have the
|
|
|
|
// information necessary to construct a transaction that will send the settled
|
|
|
|
// funds of both parties to the final delivery addresses negotiated during the
|
|
|
|
// funding workflow.
|
|
|
|
type Shutdown struct {
|
|
|
|
// ChannelID serves to identify which channel is to be closed.
|
|
|
|
ChannelID ChannelID
|
|
|
|
|
2017-03-25 02:26:09 +01:00
|
|
|
// Address is the script to which the channel funds will be paid.
|
2017-03-09 00:32:11 +01:00
|
|
|
Address DeliveryAddress
|
2020-01-28 02:25:36 +01:00
|
|
|
|
|
|
|
// ExtraData is the set of data that was appended to this message to
|
|
|
|
// fill out the full maximum transport message size. These fields can
|
|
|
|
// be used to specify optional data such as custom TLV fields.
|
|
|
|
ExtraData ExtraOpaqueData
|
2017-03-09 00:32:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewShutdown creates a new Shutdown message.
|
|
|
|
func NewShutdown(cid ChannelID, addr DeliveryAddress) *Shutdown {
|
|
|
|
return &Shutdown{
|
|
|
|
ChannelID: cid,
|
|
|
|
Address: addr,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// A compile-time check to ensure Shutdown implements the lnwire.Message
|
|
|
|
// interface.
|
|
|
|
var _ Message = (*Shutdown)(nil)
|
|
|
|
|
|
|
|
// Decode deserializes a serialized Shutdown stored in the passed io.Reader
|
|
|
|
// observing the specified protocol version.
|
|
|
|
//
|
|
|
|
// This is part of the lnwire.Message interface.
|
|
|
|
func (s *Shutdown) Decode(r io.Reader, pver uint32) error {
|
2020-01-28 02:25:36 +01:00
|
|
|
return ReadElements(r, &s.ChannelID, &s.Address, &s.ExtraData)
|
2017-03-09 00:32:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Encode serializes the target Shutdown into the passed io.Writer observing
|
|
|
|
// the protocol version specified.
|
|
|
|
//
|
|
|
|
// This is part of the lnwire.Message interface.
|
2021-06-17 08:17:30 +02:00
|
|
|
func (s *Shutdown) Encode(w *bytes.Buffer, pver uint32) error {
|
2021-06-18 09:11:43 +02:00
|
|
|
if err := WriteChannelID(w, s.ChannelID); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := WriteDeliveryAddress(w, s.Address); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return WriteBytes(w, s.ExtraData)
|
2017-03-09 00:32:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// MsgType returns the integer uniquely identifying this message type on the
|
|
|
|
// wire.
|
|
|
|
//
|
|
|
|
// This is part of the lnwire.Message interface.
|
|
|
|
func (s *Shutdown) MsgType() MessageType {
|
|
|
|
return MsgShutdown
|
|
|
|
}
|