Remove lines that are no longer used after removal of logging line in 7eca4f0

This commit is contained in:
kay kurokawa 2018-10-15 13:29:45 -04:00
parent 7eca4f00a7
commit d5db27b61a
No known key found for this signature in database
GPG key ID: AA15748C1D2B529F

View file

@ -970,9 +970,6 @@ bool CClaimTrie::updateTakeoverHeight(const std::string& name, int nTakeoverHeig
void CClaimTrie::BatchWriteNode(CDBBatch& batch, const std::string& name, const CClaimTrieNode* pNode) const
{
uint32_t num_claims = 0;
if (pNode)
num_claims = pNode->claims.size();
if (pNode)
batch.Write(std::make_pair(TRIE_NODE, name), *pNode);
else