Merge pull request #8798 from zoupingshi/master

chore: fix some comments
This commit is contained in:
Oliver Gugger 2024-05-31 18:03:54 +02:00 committed by GitHub
commit 613bfc07fb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -3911,7 +3911,7 @@ func (f *Manager) handleChannelReady(peer lnpeer.Peer, //nolint:funlen
localNonce, ok := f.pendingMusigNonces[chanID]
if !ok {
// If there's no pending nonce for this channel ID,
// we'll use the one generatd above.
// we'll use the one generated above.
localNonce = firstVerNonce
f.pendingMusigNonces[chanID] = firstVerNonce
}

View file

@ -2564,7 +2564,7 @@ func (c *CoinSource) ListCoins(minConfs int32,
for _, utxo := range utxos {
// If there is a filter function supplied all utxos not adhering
// to these conditions will be discared.
// to these conditions will be discarded.
if c.allowUtxo != nil && !c.allowUtxo(*utxo) {
walletLog.Infof("Cannot use unconfirmed "+
"utxo=%v because it is unstable and could be "+