7d0e1576ec
This commit removes the previous HTLC timeout in message in favor of a HTLC cancel message. Within the protocol, a timeout message would never be sent backwards along the route as in the case of an HTLC timeout before/after the grace period, the course of action taken would be to broadcast the current commitment transaction unilaterally on-chain.
34 lines
800 B
Go
34 lines
800 B
Go
package lnwire
|
|
|
|
import (
|
|
"bytes"
|
|
"reflect"
|
|
"testing"
|
|
)
|
|
|
|
func TestCancelHTLCEncodeDecode(t *testing.T) {
|
|
// First create a new HTLCTR message.
|
|
cancelMsg := &CancelHTLC{
|
|
ChannelPoint: outpoint1,
|
|
HTLCKey: 22,
|
|
}
|
|
|
|
// Next encode the HTLCTR message into an empty bytes buffer.
|
|
var b bytes.Buffer
|
|
if err := cancelMsg.Encode(&b, 0); err != nil {
|
|
t.Fatalf("unable to encode CancelHTLC: %v", err)
|
|
}
|
|
|
|
// Deserialize the encoded HTLCTR message into a new empty struct.
|
|
cancelMsg2 := &CancelHTLC{}
|
|
if err := cancelMsg2.Decode(&b, 0); err != nil {
|
|
t.Fatalf("unable to decode CancelHTLC: %v", err)
|
|
}
|
|
|
|
// Assert equality of the two instances.
|
|
if !reflect.DeepEqual(cancelMsg, cancelMsg2) {
|
|
t.Fatalf("encode/decode error messages don't match %#v vs %#v",
|
|
cancelMsg, cancelMsg2)
|
|
}
|
|
}
|