aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.cpp
diff options
context:
space:
mode:
authorJeff Garzik <[email protected]>2012-08-01 10:56:47 -0700
committerJeff Garzik <[email protected]>2012-08-01 10:56:47 -0700
commitf81e6f779b66e235afd6c5241306d5e70ec41276 (patch)
tree208e1d5fb7b77c41e67edb372e2590250c32faac /src/wallet.cpp
parentMerge pull request #1636 from Diapolo/Warning_string (diff)
parentBugfix: Correct English grammar regarding "'s" (diff)
downloaddiscoin-f81e6f779b66e235afd6c5241306d5e70ec41276.tar.xz
discoin-f81e6f779b66e235afd6c5241306d5e70ec41276.zip
Merge pull request #1632 from luke-jr/spelling
Fix spelling and grammar errors
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 fee4db9e7..8ad0f84ac 100644
--- a/src/wallet.cpp
+++ b/src/wallet.cpp
@@ -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.
}
}
}