lnwire: use [6]byte obsfucator

This commit is contained in:
Christopher Jämthagen 2017-01-05 08:55:52 +01:00 committed by Olaoluwa Osuntokun
parent 873211c02f
commit 3983e0693b

@ -41,14 +41,14 @@ type SingleFundingComplete struct {
// the commitment transaction's only input. The initiator generates // the commitment transaction's only input. The initiator generates
// this value by hashing the 0th' state derived from the revocation PRF // this value by hashing the 0th' state derived from the revocation PRF
// an additional time. // an additional time.
StateHintObsfucator [4]byte StateHintObsfucator [6]byte
} }
// NewSingleFundingComplete creates, and returns a new empty // NewSingleFundingComplete creates, and returns a new empty
// SingleFundingResponse. // SingleFundingResponse.
func NewSingleFundingComplete(chanID uint64, fundingPoint wire.OutPoint, func NewSingleFundingComplete(chanID uint64, fundingPoint wire.OutPoint,
commitSig *btcec.Signature, revokeKey *btcec.PublicKey, commitSig *btcec.Signature, revokeKey *btcec.PublicKey,
obsfucator [4]byte) *SingleFundingComplete { obsfucator [6]byte) *SingleFundingComplete {
return &SingleFundingComplete{ return &SingleFundingComplete{
ChannelID: chanID, ChannelID: chanID,