diff options
| author | Pieter Wuille <[email protected]> | 2017-05-04 00:15:36 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2017-06-01 13:15:25 -0700 |
| commit | 73de2c1ff345ac38c098d7b1bef03176f3ea1f16 (patch) | |
| tree | 697e34ca54310c6598ee033af7611f63173b57a5 /src/txdb.cpp | |
| parent | Merge CCoinsViewCache's GetOutputFor and AccessCoin (diff) | |
| download | discoin-73de2c1ff345ac38c098d7b1bef03176f3ea1f16.tar.xz discoin-73de2c1ff345ac38c098d7b1bef03176f3ea1f16.zip | |
Rename CCoinsCacheEntry::coins to coin
Diffstat (limited to 'src/txdb.cpp')
| -rw-r--r-- | src/txdb.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/txdb.cpp b/src/txdb.cpp index 205b1b0a8..45a7d69a3 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++; |