mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 01:43:16 +01:00
16 lines
287 B
Go
16 lines
287 B
Go
package contractcourt
|
|
|
|
import (
|
|
"github.com/lightningnetwork/lnd/channeldb"
|
|
"github.com/lightningnetwork/lnd/channeldb/models"
|
|
)
|
|
|
|
type mockHTLCNotifier struct {
|
|
HtlcNotifier
|
|
}
|
|
|
|
func (m *mockHTLCNotifier) NotifyFinalHtlcEvent(key models.CircuitKey,
|
|
info channeldb.FinalHtlcInfo) {
|
|
|
|
}
|