From ff8b9aafa670957592556b851cb41d7039cc82e1 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Tue, 29 Nov 2011 16:22:17 -0800 Subject: [PATCH] Remove debug code accidentally commited. --- SHAMap.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/SHAMap.cpp b/SHAMap.cpp index 481f6f37c4..ecbc7d74fa 100644 --- a/SHAMap.cpp +++ b/SHAMap.cpp @@ -34,8 +34,6 @@ void SHAMap::dirtyUp(const uint256& id) { // walk up the tree to the root updating nodes SHAMapInnerNode::pointer node=mInnerNodeByID[SHAMapNode(depth, leaf->getNodeID())]; if(!node) throw SHAMapException(MissingNode); - if(depth==19) - std::cerr << "BEFOR:" << node->getString() << std::endl; if(!node->setChildHash(node->selectBranch(id), hVal)) { #ifdef ST_DEBUG @@ -43,8 +41,6 @@ void SHAMap::dirtyUp(const uint256& id) #endif return; } - if(depth==19) - std::cerr << "AFTER:" << node->getString() << std::endl; if(mDirtyInnerNodes) (*mDirtyInnerNodes)[*node]=node; hVal=node->getNodeHash(); if(!hVal)