@@ -22,6 +22,7 @@ import (
2222 "github.com/go-errors/errors"
2323 "github.com/lightningnetwork/lnd/chainntnfs"
2424 "github.com/lightningnetwork/lnd/channeldb"
25+ "github.com/lightningnetwork/lnd/fn"
2526 "github.com/lightningnetwork/lnd/input"
2627 "github.com/lightningnetwork/lnd/keychain"
2728 "github.com/lightningnetwork/lnd/lntest/channels"
@@ -1585,6 +1586,7 @@ func testBreachSpends(t *testing.T, test breachTest) {
15851586 // Notify the breach arbiter about the breach.
15861587 retribution , err := lnwallet .NewBreachRetribution (
15871588 alice .State (), height , 1 , forceCloseTx ,
1589+ fn .None [lnwallet.AuxLeafStore ](),
15881590 )
15891591 require .NoError (t , err , "unable to create breach retribution" )
15901592
@@ -1794,6 +1796,7 @@ func TestBreachDelayedJusticeConfirmation(t *testing.T) {
17941796 // Notify the breach arbiter about the breach.
17951797 retribution , err := lnwallet .NewBreachRetribution (
17961798 alice .State (), height , uint32 (blockHeight ), forceCloseTx ,
1799+ fn .None [lnwallet.AuxLeafStore ](),
17971800 )
17981801 require .NoError (t , err , "unable to create breach retribution" )
17991802
0 commit comments