From 0c2229737951deef8c79fc2944472401f53befc5 Mon Sep 17 00:00:00 2001 From: Conner Fromknecht Date: Mon, 7 May 2018 21:21:01 -0700 Subject: [PATCH] fundingmanager_test: mock ReportShortChanID w/o sid arg --- fundingmanager_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fundingmanager_test.go b/fundingmanager_test.go index 4ebf4465..7c83aec2 100644 --- a/fundingmanager_test.go +++ b/fundingmanager_test.go @@ -307,7 +307,7 @@ func createTestFundingManager(t *testing.T, privKey *btcec.PrivateKey, WatchNewChannel: func(*channeldb.OpenChannel, *lnwire.NetAddress) error { return nil }, - ReportShortChanID: func(wire.OutPoint, lnwire.ShortChannelID) error { + ReportShortChanID: func(wire.OutPoint) error { return nil }, ZombieSweeperInterval: 1 * time.Hour,