aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGavin Andresen <gavinandresen@gmail.com>2011-05-01 06:41:20 -0700
committerGavin Andresen <gavinandresen@gmail.com>2011-05-01 06:41:20 -0700
commit2296647e01ce795fd3cd87c8dd6faddeac249e6f (patch)
tree8b24cc09ff3a5fc82dd2be42caa7ed56916e4579
parent249aff45c205962d97d6b77b220dc26131cc7fd3 (diff)
parentbe2fa90b94cfa9aeadcf6cd1a4d05bb8c2349f2f (diff)
downloadbitcoin-2296647e01ce795fd3cd87c8dd6faddeac249e6f.tar.xz
Merge pull request #181 from sipa/fixcheckconf.
Bugfix in recursive check in IsConfirmed()
-rw-r--r--main.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.h b/main.h
index 355ef5313f..8ff105124e 100644
--- a/main.h
+++ b/main.h
@@ -1028,7 +1028,7 @@ public:
if (!ptx->IsFinal())
return false;
if (ptx->GetDepthInMainChain() >= 1)
- return true;
+ continue;
if (!ptx->IsFromMe())
return false;