From e390a475c1484af519a4cc51d4d055505985c7f3 Mon Sep 17 00:00:00 2001 From: Sean Bowe Date: Mon, 7 May 2018 13:43:55 -0600 Subject: [PATCH] Fix outdated comment --- src/coins.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/coins.cpp b/src/coins.cpp index 42209539e..508401ade 100644 --- a/src/coins.cpp +++ b/src/coins.cpp @@ -201,9 +201,9 @@ void CCoinsViewCache::AbstractPushAnchor( auto currentRoot = GetBestAnchor(type); // We don't want to overwrite an anchor we already have. - // This occurs when a block doesn't modify mapSproutAnchors at all, + // This occurs when a block doesn't modify mapAnchors at all, // because there are no joinsplits. We could get around this a - // different way (make all blocks modify mapSproutAnchors somehow) + // different way (make all blocks modify mapAnchors somehow) // but this is simpler to reason about. if (currentRoot != newrt) { auto insertRet = cacheAnchors.insert(std::make_pair(newrt, CacheEntry()));