aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.cpp
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2012-07-26 00:48:39 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2012-08-12 17:00:02 +0000
commit9e98fe6f584d8bdd0ffe4d5dc5c0b908beb456db (patch)
tree7184c24972587017f1670bbdc34d328c782feae7 /src/wallet.cpp
parentae8ccfd24bad9b0b08c431c7d446566b5fc3e661 (diff)
downloadbitcoin-9e98fe6f584d8bdd0ffe4d5dc5c0b908beb456db.tar.xz
Bugfix: Fix a variety of misspellings
(PARTIAL: Left out anything changing debug.log)
Diffstat (limited to 'src/wallet.cpp')
-rw-r--r--src/wallet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet.cpp b/src/wallet.cpp
index 8fe77119ee..38d2b64a17 100644
--- a/src/wallet.cpp
+++ b/src/wallet.cpp
@@ -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.
}
}
}