diff --git a/src/Wallet.cpp b/src/Wallet.cpp index 293c58ac6..eaecc2f30 100644 --- a/src/Wallet.cpp +++ b/src/Wallet.cpp @@ -158,10 +158,4 @@ bool Wallet::dataStore(const std::string& strKey, const std::string& strValue) return bSuccess; } -bool Wallet::unitTest() -{ - // Create 100 keys for each of 1,000 families and ensure all keys match - return true; -} - // vim:ts=4 diff --git a/src/Wallet.h b/src/Wallet.h index 09ffa211d..f1e9dc0af 100644 --- a/src/Wallet.h +++ b/src/Wallet.h @@ -54,8 +54,6 @@ public: bool dataDelete(const std::string& strKey); bool dataFetch(const std::string& strKey, std::string& strValue); bool dataStore(const std::string& strKey, const std::string& strValue); - - static bool unitTest(); }; #endif