mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 18:10:34 +01:00
383cb40f8d
Add a new subpackage to `lnd/channeldb` to hold some of the types that are used in the package itself and in other packages that should not depend on `channeldb`.
15 lines
306 B
Go
15 lines
306 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) { //nolint:whitespace
|
|
}
|