Remove empty unit test from Wallet.

This commit is contained in:
Arthur Britto
2012-06-13 17:11:03 -07:00
parent ebed3d930c
commit 8f8948e5a4
2 changed files with 0 additions and 8 deletions

View File

@@ -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

View File

@@ -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