diff options
| author | James O'Beirne <[email protected]> | 2015-10-08 00:44:10 -0700 |
|---|---|---|
| committer | James O'Beirne <[email protected]> | 2015-10-08 09:32:27 -0700 |
| commit | 0fdf8c80ee322ab747321d61faf9c72af4a51445 (patch) | |
| tree | b9e94a6249b05fa597d9f3926316215c74710c60 /src/txdb.cpp | |
| parent | Encapsulate CLevelDB iterators cleanly (diff) | |
| download | discoin-0fdf8c80ee322ab747321d61faf9c72af4a51445.tar.xz discoin-0fdf8c80ee322ab747321d61faf9c72af4a51445.zip | |
Handle obfuscation in CLevelDBIterator
Diffstat (limited to 'src/txdb.cpp')
| -rw-r--r-- | src/txdb.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/txdb.cpp b/src/txdb.cpp index 3d2050891..4d7ec27aa 100644 --- a/src/txdb.cpp +++ b/src/txdb.cpp @@ -98,7 +98,7 @@ bool CCoinsViewDB::GetStats(CCoinsStats &stats) const { /* It seems that there are no "const iterators" for LevelDB. Since we only need read operations on it, use a const-cast to get around that restriction. */ - boost::scoped_ptr<CLevelDBWrapper> pcursor(const_cast<CLevelDBWrapper*>(&db)->NewIterator()); + boost::scoped_ptr<CLevelDBIterator> pcursor(const_cast<CLevelDBWrapper*>(&db)->NewIterator()); pcursor->Seek('c'); CHashWriter ss(SER_GETHASH, PROTOCOL_VERSION); @@ -177,9 +177,9 @@ bool CBlockTreeDB::ReadFlag(const std::string &name, bool &fValue) { bool CBlockTreeDB::LoadBlockIndexGuts() { - boost::scoped_ptr<leveldb::Iterator> pcursor(NewIterator()); + boost::scoped_ptr<CLevelDBIterator> pcursor(NewIterator()); - pcursor->Seek(make_pair('b', uint256(0))); + pcursor->Seek(make_pair('b', uint256())); // Load mapBlockIndex while (pcursor->Valid()) { |