diff --git a/src/claimtrie.cpp b/src/claimtrie.cpp index 59f12eaf2..6b39f47d6 100644 --- a/src/claimtrie.cpp +++ b/src/claimtrie.cpp @@ -769,17 +769,26 @@ bool CClaimTrie::update(nodeCacheType& cache, hashMapType& hashes, std::mapfirst, itcache->second)) + { + LogPrintf("%s: Failed to update name for:%s\n", __func__, itcache->first); return false; + } } for (hashMapType::iterator ithash = hashes.begin(); ithash != hashes.end(); ++ithash) { if (!updateHash(ithash->first, ithash->second)) + { + LogPrintf("%s: Failed to update hash for:%s\n", __func__, ithash->first); return false; + } } for (std::map::iterator itheight = takeoverHeights.begin(); itheight != takeoverHeights.end(); ++itheight) { if (!updateTakeoverHeight(itheight->first, itheight->second)) + { + LogPrintf("%s: Failed to update takeover height for:%s\n", __func__, itheight->first); return false; + } } for (claimQueueType::iterator itQueueCacheRow = queueCache.begin(); itQueueCacheRow != queueCache.end(); ++itQueueCacheRow) {