mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-04 10:07:27 -05:00
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…
Add table
Reference in a new issue