@@ -50,6 +50,7 @@ func TestReadChannelCustomData(t *testing.T) {
5050 }, map [input.HtlcIndex ][]* AssetOutput {
5151 2 : {output4 },
5252 }, lnwallet.CommitAuxLeaves {},
53+ false ,
5354 )
5455
5556 fundingBlob := fundingState .Bytes ()
@@ -157,19 +158,19 @@ func TestReadBalanceCustomData(t *testing.T) {
157158
158159 openChannel1 := NewCommitment (
159160 []* AssetOutput {output1 }, []* AssetOutput {output2 }, nil , nil ,
160- lnwallet.CommitAuxLeaves {},
161+ lnwallet.CommitAuxLeaves {}, false ,
161162 )
162163 openChannel2 := NewCommitment (
163164 []* AssetOutput {output2 }, []* AssetOutput {output3 }, nil , nil ,
164- lnwallet.CommitAuxLeaves {},
165+ lnwallet.CommitAuxLeaves {}, false ,
165166 )
166167 pendingChannel1 := NewCommitment (
167168 []* AssetOutput {output3 }, nil , nil , nil ,
168- lnwallet.CommitAuxLeaves {},
169+ lnwallet.CommitAuxLeaves {}, false ,
169170 )
170171 pendingChannel2 := NewCommitment (
171172 nil , []* AssetOutput {output1 }, nil , nil ,
172- lnwallet.CommitAuxLeaves {},
173+ lnwallet.CommitAuxLeaves {}, false ,
173174 )
174175
175176 var customChannelData bytes.Buffer
0 commit comments