mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-22 14:22:37 +01:00
chore: fix some problematic method name in comment
Signed-off-by: thirdkeyword <fliterdashen@gmail.com>
This commit is contained in:
parent
1ebdefb943
commit
4c844bfb77
3 changed files with 5 additions and 5 deletions
|
@ -79,7 +79,7 @@ type WitnessBeacon interface {
|
|||
payload *hop.Payload,
|
||||
nextHopOnionBlob []byte) (*WitnessSubscription, error)
|
||||
|
||||
// LookupPreImage attempts to lookup a preimage in the global cache.
|
||||
// LookupPreimage attempts to lookup a preimage in the global cache.
|
||||
// True is returned for the second argument if the preimage is found.
|
||||
LookupPreimage(payhash lntypes.Hash) (lntypes.Preimage, bool)
|
||||
|
||||
|
|
|
@ -284,8 +284,8 @@ type ChannelLink interface {
|
|||
// total sent/received milli-satoshis.
|
||||
Stats() (uint64, lnwire.MilliSatoshi, lnwire.MilliSatoshi)
|
||||
|
||||
// Peer returns the serialized public key of remote peer with which we
|
||||
// have the channel link opened.
|
||||
// PeerPubKey returns the serialized public key of remote peer with
|
||||
// which we have the channel link opened.
|
||||
PeerPubKey() [33]byte
|
||||
|
||||
// AttachMailBox delivers an active MailBox to the link. The MailBox may
|
||||
|
@ -440,7 +440,7 @@ type htlcNotifier interface {
|
|||
NotifyForwardingEvent(key HtlcKey, info HtlcInfo,
|
||||
eventType HtlcEventType)
|
||||
|
||||
// NotifyIncomingLinkFailEvent notifies that a htlc has failed on our
|
||||
// NotifyLinkFailEvent notifies that a htlc has failed on our
|
||||
// incoming link. It takes an isReceive bool to differentiate between
|
||||
// our node's receives and forwards.
|
||||
NotifyLinkFailEvent(key HtlcKey, info HtlcInfo,
|
||||
|
|
|
@ -119,7 +119,7 @@ func (p *preimageBeacon) SubscribeUpdates(
|
|||
return sub, nil
|
||||
}
|
||||
|
||||
// LookupPreImage attempts to lookup a preimage in the global cache. True is
|
||||
// LookupPreimage attempts to lookup a preimage in the global cache. True is
|
||||
// returned for the second argument if the preimage is found.
|
||||
func (p *preimageBeacon) LookupPreimage(
|
||||
payHash lntypes.Hash) (lntypes.Preimage, bool) {
|
||||
|
|
Loading…
Add table
Reference in a new issue