Cosmetic fix.

This commit is contained in:
JoelKatz
2013-03-06 19:58:06 -08:00
parent 32ca30c2e9
commit 678c64f157

View File

@@ -102,7 +102,7 @@ uint256 SHAMapNode::getNodeID(int depth, const uint256& hash)
return hash & smMasks[depth]; return hash & smMasks[depth];
} }
SHAMapNode::SHAMapNode(int depth, const uint256 &hash) : mDepth(depth), mHash(0), mNodeID(getNodeID(depth, hash)) SHAMapNode::SHAMapNode(int depth, const uint256 &hash) : mNodeID(getNodeID(depth,hash), mDepth(depth), mHash(0)
{ // canonicalize the hash to a node ID for this depth { // canonicalize the hash to a node ID for this depth
assert((depth >= 0) && (depth < 65)); assert((depth >= 0) && (depth < 65));
} }