Rename CCoinsCacheEntry::coins to coin

This commit is contained in:
Pieter Wuille
2017-05-04 00:15:36 -07:00
parent 119e552f7c
commit 73de2c1ff3
4 changed files with 33 additions and 33 deletions

View File

@@ -75,10 +75,10 @@ bool CCoinsViewDB::BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) {
for (CCoinsMap::iterator it = mapCoins.begin(); it != mapCoins.end();) {
if (it->second.flags & CCoinsCacheEntry::DIRTY) {
CoinsEntry entry(&it->first);
if (it->second.coins.IsPruned())
if (it->second.coin.IsPruned())
batch.Erase(entry);
else
batch.Write(entry, it->second.coins);
batch.Write(entry, it->second.coin);
changed++;
}
count++;