aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2011-05-01 06:41:20 -0700
committerGavin Andresen <[email protected]>2011-05-01 06:41:20 -0700
commit2296647e01ce795fd3cd87c8dd6faddeac249e6f (patch)
tree8b24cc09ff3a5fc82dd2be42caa7ed56916e4579
parentMerge pull request #186 from TheBlueMatt/nopng. (diff)
parentBugfix in recursive check in IsConfirmed() (diff)
downloaddiscoin-2296647e01ce795fd3cd87c8dd6faddeac249e6f.tar.xz
discoin-2296647e01ce795fd3cd87c8dd6faddeac249e6f.zip
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 355ef5313..8ff105124 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;