Bugfix: Fix a variety of misspellings

(PARTIAL: Left out anything changing debug.log)
This commit is contained in:
Luke Dashjr
2012-07-26 00:48:39 +00:00
parent ae8ccfd24b
commit 9e98fe6f58
11 changed files with 33 additions and 33 deletions

View File

@@ -628,7 +628,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);
}
@@ -637,7 +637,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.
}
}
}