Skip to content

Commit

Permalink
Merge pull request #9319 from thirdkeyword/master
Browse files Browse the repository at this point in the history
chore: fix some problematic method name in comment
  • Loading branch information
guggero authored Dec 19, 2024
2 parents dac4c1f + 4c844bf commit 7544a2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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
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 7544a2b

Please sign in to comment.