aboutsummaryrefslogtreecommitdiff
path: root/src/dbwrapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dbwrapper.h')
-rw-r--r--src/dbwrapper.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/dbwrapper.h b/src/dbwrapper.h
index eac9594aa1..2f7448e878 100644
--- a/src/dbwrapper.h
+++ b/src/dbwrapper.h
@@ -6,7 +6,6 @@
#define BITCOIN_DBWRAPPER_H
#include <attributes.h>
-#include <clientversion.h>
#include <serialize.h>
#include <span.h>
#include <streams.h>
@@ -167,7 +166,7 @@ public:
template<typename V> bool GetValue(V& value) {
try {
- CDataStream ssValue{GetValueImpl(), SER_DISK, CLIENT_VERSION};
+ DataStream ssValue{GetValueImpl()};
ssValue.Xor(dbwrapper_private::GetObfuscateKey(parent));
ssValue >> value;
} catch (const std::exception&) {
@@ -229,7 +228,7 @@ public:
return false;
}
try {
- CDataStream ssValue{MakeByteSpan(*strValue), SER_DISK, CLIENT_VERSION};
+ DataStream ssValue{MakeByteSpan(*strValue)};
ssValue.Xor(obfuscate_key);
ssValue >> value;
} catch (const std::exception&) {