aboutsummaryrefslogtreecommitdiff
path: root/db.cpp
diff options
context:
space:
mode:
authors_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b>2010-02-15 04:03:07 +0000
committers_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b>2010-02-15 04:03:07 +0000
commit5253d1ab77fab1995ede03fb934edd67f1359ba8 (patch)
treefd29f92dd45891aab4d1bc6103bb886971a29523 /db.cpp
parent64a474a49b20a66453fbcd2382e4b042427b0a0f (diff)
downloadbitcoin-5253d1ab77fab1995ede03fb934edd67f1359ba8.tar.xz
strip out unfinished product, review and market stuff,
enable _() instead of wxT() in uiproject.fbp so it uses wxGetTranslation for the wxFormBuilder generated part of the UI git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@64 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'db.cpp')
-rw-r--r--db.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/db.cpp b/db.cpp
index ff9ece52b1..bbf24a0e70 100644
--- a/db.cpp
+++ b/db.cpp
@@ -508,27 +508,6 @@ bool LoadAddresses()
//
-// CReviewDB
-//
-
-bool CReviewDB::ReadReviews(uint256 hash, vector<CReview>& vReviews)
-{
- vReviews.size(); // msvc workaround, just need to do anything with vReviews
- return Read(make_pair(string("reviews"), hash), vReviews);
-}
-
-bool CReviewDB::WriteReviews(uint256 hash, const vector<CReview>& vReviews)
-{
- return Write(make_pair(string("reviews"), hash), vReviews);
-}
-
-
-
-
-
-
-
-//
// CWalletDB
//