Merge pull request #181 from sipa/fixcheckconf.
Bugfix in recursive check in IsConfirmed()
This commit is contained in:
commit
2296647e01
1 changed files with 1 additions and 1 deletions
2
main.h
2
main.h
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue