mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Stupid buglet was borking ledger acquire logic.
This commit is contained in:
@@ -216,7 +216,7 @@ bool SHAMap::addKnownNode(const SHAMapNode& node, const std::vector<unsigned cha
|
||||
return true;
|
||||
}
|
||||
|
||||
if (iNode->isLeaf() || (iNode->getDepth() == node.getDepth()))
|
||||
if (iNode->isLeaf() || (iNode->getDepth() >= node.getDepth()))
|
||||
{
|
||||
cLog(lsTRACE) << "got inner node, already had it (late)";
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user