2019-04-16 11:21:02 +03:00
|
|
|
package contractcourt
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/lightningnetwork/lnd/channeldb"
|
|
|
|
"github.com/lightningnetwork/lnd/invoices"
|
|
|
|
"github.com/lightningnetwork/lnd/lntypes"
|
|
|
|
"github.com/lightningnetwork/lnd/lnwire"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Registry is an interface which represents the invoice registry.
|
|
|
|
type Registry interface {
|
|
|
|
// LookupInvoice attempts to look up an invoice according to its 32
|
2019-08-20 15:54:39 +03:00
|
|
|
// byte payment hash.
|
|
|
|
LookupInvoice(lntypes.Hash) (channeldb.Invoice, error)
|
2019-04-16 11:21:02 +03:00
|
|
|
|
|
|
|
// NotifyExitHopHtlc attempts to mark an invoice as settled. If the
|
|
|
|
// invoice is a debug invoice, then this method is a noop as debug
|
|
|
|
// invoices are never fully settled. The return value describes how the
|
|
|
|
// htlc should be resolved. If the htlc cannot be resolved immediately,
|
|
|
|
// the resolution is sent on the passed in hodlChan later.
|
|
|
|
NotifyExitHopHtlc(payHash lntypes.Hash, paidAmount lnwire.MilliSatoshi,
|
2019-04-16 13:11:20 +03:00
|
|
|
expiry uint32, currentHeight int32,
|
2019-08-08 16:48:31 +03:00
|
|
|
circuitKey channeldb.CircuitKey, hodlChan chan<- interface{},
|
2019-07-31 07:52:17 +03:00
|
|
|
eob []byte) (*invoices.HodlEvent, error)
|
2019-04-16 11:21:02 +03:00
|
|
|
|
|
|
|
// HodlUnsubscribeAll unsubscribes from all hodl events.
|
|
|
|
HodlUnsubscribeAll(subscriber chan<- interface{})
|
|
|
|
}
|