Merge pull request #1632 from luke-jr/spelling

Fix spelling and grammar errors
This commit is contained in:
Jeff Garzik
2012-08-01 10:56:47 -07:00
39 changed files with 97 additions and 97 deletions

View File

@@ -758,7 +758,7 @@ void CWallet::ReacceptWalletTransactions()
}
else
{
// Reaccept any txes of ours that aren't already in a block
// Re-accept any txes of ours that aren't already in a block
if (!wtx.IsCoinBase())
wtx.AcceptWalletTransaction(txdb, false);
}
@@ -767,7 +767,7 @@ void CWallet::ReacceptWalletTransactions()
{
// TODO: optimize this to scan just part of the block chain?
if (ScanForWalletTransactions(pindexGenesisBlock))
fRepeat = true; // Found missing transactions: re-do Reaccept.
fRepeat = true; // Found missing transactions: re-do re-accept.
}
}
}