diff options
author | Peter Bushnell <bushsolo@gmail.com> | 2019-07-27 13:07:30 +0100 |
---|---|---|
committer | Peter Bushnell <bushsolo@gmail.com> | 2019-07-30 06:36:34 +0100 |
commit | 914923d125f5d17b39b4dc05f666d130e80a68b2 (patch) | |
tree | 4b24f5d92caab8f4e429089e80fc75f1523b2024 /src | |
parent | 33894612c0de953b75b41dbfcc643986e4ac177e (diff) |
Add setting as known type
Diffstat (limited to 'src')
-rw-r--r-- | src/wallet/walletdb.cpp | 4 | ||||
-rw-r--r-- | src/wallet/walletdb.h | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/wallet/walletdb.cpp b/src/wallet/walletdb.cpp index 987665c9da..9f467c0f5a 100644 --- a/src/wallet/walletdb.cpp +++ b/src/wallet/walletdb.cpp @@ -40,6 +40,7 @@ const std::string OLD_KEY{"wkey"}; const std::string ORDERPOSNEXT{"orderposnext"}; const std::string POOL{"pool"}; const std::string PURPOSE{"purpose"}; +const std::string SETTINGS{"settings"}; const std::string TX{"tx"}; const std::string VERSION{"version"}; const std::string WATCHMETA{"watchmeta"}; @@ -407,7 +408,8 @@ ReadKeyValue(CWallet* pwallet, CDataStream& ssKey, CDataStream& ssValue, return false; } } else if (strType != DBKeys::BESTBLOCK && strType != DBKeys::BESTBLOCK_NOMERKLE && - strType != DBKeys::MINVERSION && strType != DBKeys::ACENTRY && strType != DBKeys::VERSION) { + strType != DBKeys::MINVERSION && strType != DBKeys::ACENTRY && + strType != DBKeys::VERSION && strType != DBKeys::SETTINGS) { wss.m_unknown_records++; } } catch (const std::exception& e) { diff --git a/src/wallet/walletdb.h b/src/wallet/walletdb.h index b78bc49f9e..0fee35934d 100644 --- a/src/wallet/walletdb.h +++ b/src/wallet/walletdb.h @@ -74,6 +74,7 @@ extern const std::string OLD_KEY; extern const std::string ORDERPOSNEXT; extern const std::string POOL; extern const std::string PURPOSE; +extern const std::string SETTINGS; extern const std::string TX; extern const std::string VERSION; extern const std::string WATCHMETA; |