mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 18:10:34 +01:00
84fd911b47
Fixes new lint errors caught by the latest version.
12 lines
252 B
Go
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
|
|
}
|