changeset 309:154be46537f5 draft

still working on account-based commands getbalance, move and sendfrom, they're only for testing for now git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@190 1a98c847-1fd6-4fd8-948a-caf3550aa51b
author s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b>
date Thu, 25 Nov 2010 16:40:25 +0000
parents 94c9b179df77
children 91d8705b0a5f
files rpc.cpp serialize.h
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/rpc.cpp
+++ b/rpc.cpp
@@ -628,6 +628,8 @@
     if (params.size() == 0)
         return ((double)GetBalance() / (double)COIN);
 
+    throw runtime_error("under construction"); //// to be released soon
+
     string strAccount = params[0].get_str();
     int nMinDepth = 1;
     if (params.size() > 1)
--- a/serialize.h
+++ b/serialize.h
@@ -22,7 +22,7 @@
 class CAutoFile;
 static const unsigned int MAX_SIZE = 0x02000000;
 
-static const int VERSION = 31601;
+static const int VERSION = 31602;
 static const char* pszSubVer = "";