aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGavin Andresen <gavinandresen@gmail.com>2011-04-12 17:27:15 -0400
committerGavin Andresen <gavinandresen@gmail.com>2011-04-12 17:27:15 -0400
commitd89d456655f03159a32e6a4a9df22bfe02d403d6 (patch)
treeb8a1976fdcc4b55297d66845911dd39b42ef248e
parent79706a8e48a043b9ca83216ba9cbb7413e81710d (diff)
parentc59b6f704cd8f42e1943f124f435363bfff244f5 (diff)
downloadbitcoin-d89d456655f03159a32e6a4a9df22bfe02d403d6.tar.xz
Merge branch 'spentpertxout' of https://github.com/sipa/bitcoin
-rw-r--r--main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
index 17a1b81c5c..1c2292badb 100644
--- a/main.cpp
+++ b/main.cpp
@@ -958,6 +958,8 @@ void ReacceptWalletTransactions()
}
for (int i = 0; i < txindex.vSpent.size(); i++)
{
+ if (wtx.IsSpent(i))
+ continue;
if (!txindex.vSpent[i].IsNull() && wtx.vout[i].IsMine())
{
wtx.MarkSpent(i);