lnd/contractcourt/mock_htlcnotifier_test.go
yyforyongyu 84fd911b47
multi: fix make lint
Fixes new lint errors caught by the latest version.
2022-11-18 20:48:23 +08:00

12 lines
252 B
Go

package contractcourt
import "github.com/lightningnetwork/lnd/channeldb"
type mockHTLCNotifier struct {
HtlcNotifier
}
func (m *mockHTLCNotifier) NotifyFinalHtlcEvent(key channeldb.CircuitKey,
info channeldb.FinalHtlcInfo) { //nolint:whitespace
}