aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.cpp
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2012-08-12 17:02:38 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2012-08-12 17:02:38 +0000
commit797d0b231bebcf2cfdb82f4d44b9a06ead2a6e3c (patch)
treee020813e04c0d63487147f9b586b34367bed9252 /src/wallet.cpp
parent5951d9fe3224b11ba9ae45df4fe44804ec0efd83 (diff)
parent9e98fe6f584d8bdd0ffe4d5dc5c0b908beb456db (diff)
downloadbitcoin-797d0b231bebcf2cfdb82f4d44b9a06ead2a6e3c.tar.xz
Merge branch '0.4.x' into 0.5.x
Conflicts: src/net.cpp
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 68d7e5acdb..9ce80e7044 100644
--- a/src/wallet.cpp
+++ b/src/wallet.cpp
@@ -633,7 +633,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);
}
@@ -642,7 +642,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.
}
}
}