From 8f8948e5a4064ba08653b044cc56358604418524 Mon Sep 17 00:00:00 2001 From: Arthur Britto Date: Wed, 13 Jun 2012 17:11:03 -0700 Subject: [PATCH] Remove empty unit test from Wallet. --- src/Wallet.cpp | 6 ------ src/Wallet.h | 2 -- 2 files changed, 8 deletions(-) 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