htlcswitch: add final htlc event to notifier

This commit is contained in:
Joost Jager
2022-08-29 13:28:17 +02:00
parent 28256b7ea8
commit 511fb00777
21 changed files with 729 additions and 404 deletions

View File

@@ -0,0 +1,11 @@
package contractcourt
import "github.com/lightningnetwork/lnd/channeldb"
type mockHTLCNotifier struct {
HtlcNotifier
}
func (m *mockHTLCNotifier) NotifyFinalHtlcEvent(key channeldb.CircuitKey,
info channeldb.FinalHtlcInfo) { // nolint:whitespace
}