mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-04 17:55:36 +01:00
11 lines
252 B
Go
11 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
|
|
}
|