mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 18:10:34 +01:00
f3849f5c10
* Structs and wire messages for HTLCs * Wire protocol for a state machine with no blocking(!!!) (I will write the state machine) TL;DR: Can do multiple HTLC modifications in-flight, dead simple wire protocol. Both sides can update their Commitments unliaterally without waiting for the other party's signature. Will have basic/preliminary notes in the README * Added **swp to .gitignore because of vim annoyances
71 lines
1.3 KiB
Go
71 lines
1.3 KiB
Go
package lnwire
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
type HTLCAddReject struct {
|
|
ChannelID uint64
|
|
StagingID uint64
|
|
}
|
|
|
|
func (c *HTLCAddReject) Decode(r io.Reader, pver uint32) error {
|
|
//ChannelID(8)
|
|
//CommitmentHeight(8)
|
|
//NextResponderCommitmentRevocationHash(20)
|
|
//ResponderRevocationPreimage(20)
|
|
//ResponderCommitSig(2+73max)
|
|
err := readElements(r,
|
|
&c.ChannelID,
|
|
&c.StagingID,
|
|
)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
//Creates a new HTLCAddReject
|
|
func NewHTLCAddReject() *HTLCAddReject {
|
|
return &HTLCAddReject{}
|
|
}
|
|
|
|
//Serializes the item from the HTLCAddReject struct
|
|
//Writes the data to w
|
|
func (c *HTLCAddReject) Encode(w io.Writer, pver uint32) error {
|
|
err := writeElements(w,
|
|
c.ChannelID,
|
|
c.StagingID,
|
|
)
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (c *HTLCAddReject) Command() uint32 {
|
|
return CmdHTLCAddReject
|
|
}
|
|
|
|
func (c *HTLCAddReject) MaxPayloadLength(uint32) uint32 {
|
|
//16 base size
|
|
return 16
|
|
}
|
|
|
|
//Makes sure the struct data is valid (e.g. no negatives or invalid pkscripts)
|
|
func (c *HTLCAddReject) Validate() error {
|
|
//We're good!
|
|
return nil
|
|
}
|
|
|
|
func (c *HTLCAddReject) String() string {
|
|
return fmt.Sprintf("\n--- Begin HTLCAddReject ---\n") +
|
|
fmt.Sprintf("ChannelID:\t\t%d\n", c.ChannelID) +
|
|
fmt.Sprintf("StagingID:\t\t%d\n", c.StagingID) +
|
|
fmt.Sprintf("--- End HTLCAddReject ---\n")
|
|
}
|