mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-06-26 16:51:28 +02:00
12 lines
253 B
Go
12 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
|
|
}
|