mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-03-13 06:01:45 +00:00
Fixed CDbKeyIterator constructor warning.
Removed incorrect items from the results of keva_filter.
This commit is contained in:
parent
0fa3dfbcc0
commit
316b951bd2
@ -113,7 +113,7 @@ CDbKeyIterator::~CDbKeyIterator() {
|
||||
}
|
||||
|
||||
CDbKeyIterator::CDbKeyIterator(const CDBWrapper& db, const valtype& ns)
|
||||
: iter(const_cast<CDBWrapper*>(&db)->NewIterator()), CKevaIterator(ns)
|
||||
: CKevaIterator(ns), iter(const_cast<CDBWrapper*>(&db)->NewIterator())
|
||||
{
|
||||
seek(valtype());
|
||||
}
|
||||
@ -130,6 +130,10 @@ bool CDbKeyIterator::next(valtype& key, CKevaData& data) {
|
||||
if (!iter->GetKey(curKey) || curKey.first != DB_NAME)
|
||||
return false;
|
||||
|
||||
valtype curNameSpace = std::get<0>(curKey.second);
|
||||
if (curNameSpace != nameSpace) {
|
||||
return false;
|
||||
}
|
||||
key = std::get<1>(curKey.second);
|
||||
|
||||
if (!iter->GetValue(data)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user