diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-04-20 09:08:45 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-04-23 09:32:25 +0200 |
commit | 878bf480a3875181712a53a1156754faa19e579b (patch) | |
tree | 108e95a67fae45d6b38e32b27f8b2c8ca8560602 /src/dbwrapper.h | |
parent | 74f7b1273c41892058fb2ff99aab878ccd22082a (diff) |
dbwrapper: Remove CDBWrapper::GetObfuscateKeyHex
It is an unnecessary method as it is used only two times
and only internally, and the whole implementation is
HexStr(obfuscate_key).
Diffstat (limited to 'src/dbwrapper.h')
-rw-r--r-- | src/dbwrapper.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/dbwrapper.h b/src/dbwrapper.h index 96fb42429f..153c0fd1bf 100644 --- a/src/dbwrapper.h +++ b/src/dbwrapper.h @@ -268,12 +268,6 @@ public: * Accessor for obfuscate_key. */ const std::vector<unsigned char>& GetObfuscateKey() const; - - /** - * Return the obfuscate_key as a hex-formatted string. - */ - std::string GetObfuscateKeyHex() const; - }; #endif // BITCOIN_DBWRAPPER_H |