bba9b665ef
We now enforce that the site of all revocation pre-images+hashes (used for HTLC’s) are now 32-bytes. Additionally, all payment pre-images are now required to be 32-bytes not he wire. There also exists a Script level enforcement of the payment pre-image size at a lower level. This commit serves to unify the sizes of all hashes/pre-images across the codebase.
34 lines
899 B
Go
34 lines
899 B
Go
package lnwire
|
|
|
|
import (
|
|
"bytes"
|
|
"reflect"
|
|
"testing"
|
|
)
|
|
|
|
func TestHTLCSettleRequestEncodeDecode(t *testing.T) {
|
|
redemptionProofs := make([][32]byte, 1)
|
|
redemptionProofs[0] = revHash
|
|
|
|
// First create a new HTLCSR message.
|
|
settleReq := NewHTLCSettleRequest(outpoint1, HTLCKey(23), redemptionProofs)
|
|
|
|
// Next encode the HTLCSR message into an empty bytes buffer.
|
|
var b bytes.Buffer
|
|
if err := settleReq.Encode(&b, 0); err != nil {
|
|
t.Fatalf("unable to encode HTLCSettleRequest: %v", err)
|
|
}
|
|
|
|
// Deserialize the encoded SFOP message into a new empty struct.
|
|
settleReq2 := &HTLCSettleRequest{}
|
|
if err := settleReq2.Decode(&b, 0); err != nil {
|
|
t.Fatalf("unable to decode HTLCSettleRequest: %v", err)
|
|
}
|
|
|
|
// Assert equality of the two instances.
|
|
if !reflect.DeepEqual(settleReq, settleReq2) {
|
|
t.Fatalf("encode/decode error messages don't match %#v vs %#v",
|
|
settleReq, settleReq2)
|
|
}
|
|
}
|