aboutsummaryrefslogtreecommitdiff
path: root/src/txdb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/txdb.cpp')
-rw-r--r--src/txdb.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/txdb.cpp b/src/txdb.cpp
index 205b1b0a88..45a7d69a36 100644
--- a/src/txdb.cpp
+++ b/src/txdb.cpp
@@ -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++;