mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-24 14:50:40 +01:00
11 lines
253 B
Go
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
|
|
}
|