mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-31 02:31:07 +00:00
coins: use hashBlock setter internally for CCoinsViewCache methods
Co-authored-by: l0rinc <pap.lorinc@gmail.com>
This commit is contained in:
parent
8dd9200fc9
commit
041758f5ed
@ -7,6 +7,7 @@
|
||||
#include <consensus/consensus.h>
|
||||
#include <logging.h>
|
||||
#include <random.h>
|
||||
#include <uint256.h>
|
||||
#include <util/trace.h>
|
||||
|
||||
TRACEPOINT_SEMAPHORE(utxocache, add);
|
||||
@ -250,7 +251,7 @@ void CCoinsViewCache::BatchWrite(CoinsViewCacheCursor& cursor, const uint256& ha
|
||||
}
|
||||
}
|
||||
}
|
||||
hashBlock = hashBlockIn;
|
||||
SetBestBlock(hashBlockIn);
|
||||
}
|
||||
|
||||
void CCoinsViewCache::Flush(bool will_reuse_cache)
|
||||
@ -278,7 +279,7 @@ void CCoinsViewCache::Reset() noexcept
|
||||
{
|
||||
cacheCoins.clear();
|
||||
cachedCoinsUsage = 0;
|
||||
hashBlock.SetNull();
|
||||
SetBestBlock(uint256::ZERO);
|
||||
}
|
||||
|
||||
void CCoinsViewCache::Uncache(const COutPoint& hash)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user