Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pyh4 authored and jcvernaleo committed Oct 26, 2021
1 parent a148fa7 commit d590f3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mempool/mempool.go
Expand Up @@ -1032,8 +1032,8 @@ func (mp *TxPool) maybeAcceptTransaction(tx *btcutil.Tx, isNew, rateLimit, rejec
return nil, nil, err
}

// Don't allow the transaction if it exists in the main chain and is not
// not already fully spent.
// Don't allow the transaction if it exists in the main chain and is
// already fully spent.
prevOut := wire.OutPoint{Hash: *txHash}
for txOutIdx := range tx.MsgTx().TxOut {
prevOut.Index = uint32(txOutIdx)
Expand Down

0 comments on commit d590f3f

Please sign in to comment.