Merge pull request #181 from sipa/fixcheckconf.

Bugfix in recursive check in IsConfirmed()
This commit is contained in:
Gavin Andresen 2011-05-01 06:41:20 -07:00
commit 2296647e01
1 changed files with 1 additions and 1 deletions

2
main.h
View File

@ -1028,7 +1028,7 @@ public:
if (!ptx->IsFinal()) if (!ptx->IsFinal())
return false; return false;
if (ptx->GetDepthInMainChain() >= 1) if (ptx->GetDepthInMainChain() >= 1)
return true; continue;
if (!ptx->IsFromMe()) if (!ptx->IsFromMe())
return false; return false;