lnd/contractcourt/mock_htlcnotifier_test.go
2022-10-27 16:42:36 +02:00

11 lines
253 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
}