From 3983e0693b8fc1dd04a47ea387143dd28eca2676 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christopher=20J=C3=A4mthagen?= Date: Thu, 5 Jan 2017 08:55:52 +0100 Subject: [PATCH] lnwire: use [6]byte obsfucator --- lnwire/single_funding_complete.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lnwire/single_funding_complete.go b/lnwire/single_funding_complete.go index 323a8557..5e1eb5d6 100644 --- a/lnwire/single_funding_complete.go +++ b/lnwire/single_funding_complete.go @@ -41,14 +41,14 @@ type SingleFundingComplete struct { // the commitment transaction's only input. The initiator generates // this value by hashing the 0th' state derived from the revocation PRF // an additional time. - StateHintObsfucator [4]byte + StateHintObsfucator [6]byte } // NewSingleFundingComplete creates, and returns a new empty // SingleFundingResponse. func NewSingleFundingComplete(chanID uint64, fundingPoint wire.OutPoint, commitSig *btcec.Signature, revokeKey *btcec.PublicKey, - obsfucator [4]byte) *SingleFundingComplete { + obsfucator [6]byte) *SingleFundingComplete { return &SingleFundingComplete{ ChannelID: chanID,