// Copyright (c) 2016 Bitfury Group Limited // Distributed under the MIT software license, see the accompanying // file LICENSE or http://www.opensource.org/licenses/mit-license.php package lnwire import ( "bytes" "testing" "github.com/roasbeef/btcd/wire" "reflect" ) func samplePubKey(b byte) [33]byte { var a [33]byte for i:=0; i<33; i++ { a[i] = b } return a } func sampleOutPoint(b byte) wire.OutPoint { var w wire.OutPoint for i:=0; i