Skip to content

Commit

Permalink
chore: fix some problematic method name in comment
Browse files Browse the repository at this point in the history
Signed-off-by: thirdkeyword <[email protected]>
  • Loading branch information
thirdkeyword committed Dec 19, 2024
1 parent 1ebdefb commit 4c844bf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion contractcourt/channel_arbitrator.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
6 changes: 3 additions & 3 deletions htlcswitch/interfaces.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion witness_beacon.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 4c844bf

Please sign in to comment.