mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-14 12:43:40 +02:00
dbwrapper: Use DataStream for batch operations
This commit is contained in:
parent
fd69ffbbfb
commit
5c2b3cd4b8
2 changed files with 6 additions and 7 deletions
|
|
@ -4,7 +4,6 @@
|
|||
|
||||
#include <dbwrapper.h>
|
||||
|
||||
#include <clientversion.h>
|
||||
#include <logging.h>
|
||||
#include <random.h>
|
||||
#include <serialize.h>
|
||||
|
|
@ -156,9 +155,9 @@ struct CDBBatch::WriteBatchImpl {
|
|||
leveldb::WriteBatch batch;
|
||||
};
|
||||
|
||||
CDBBatch::CDBBatch(const CDBWrapper& _parent) : parent(_parent),
|
||||
m_impl_batch{std::make_unique<CDBBatch::WriteBatchImpl>()},
|
||||
ssValue(SER_DISK, CLIENT_VERSION){};
|
||||
CDBBatch::CDBBatch(const CDBWrapper& _parent)
|
||||
: parent{_parent},
|
||||
m_impl_batch{std::make_unique<CDBBatch::WriteBatchImpl>()} {};
|
||||
|
||||
CDBBatch::~CDBBatch() = default;
|
||||
|
||||
|
|
@ -168,7 +167,7 @@ void CDBBatch::Clear()
|
|||
size_estimate = 0;
|
||||
}
|
||||
|
||||
void CDBBatch::WriteImpl(Span<const std::byte> key, CDataStream& ssValue)
|
||||
void CDBBatch::WriteImpl(Span<const std::byte> key, DataStream& ssValue)
|
||||
{
|
||||
leveldb::Slice slKey(CharCast(key.data()), key.size());
|
||||
ssValue.Xor(dbwrapper_private::GetObfuscateKey(parent));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue