aboutsummaryrefslogtreecommitdiff
path: root/rpc.cpp
diff options
context:
space:
mode:
authors_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b>2010-11-25 20:41:57 +0000
committers_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b>2010-11-25 20:41:57 +0000
commit24324d83e8d9f0b9403ca1c333b594b77eaefb4c (patch)
treef2cd2a837f51d4e0c26b001304631542fe0f90d4 /rpc.cpp
parentb7ccd48dd8dd2fb5c37f81e734673e998fd2d78a (diff)
downloadbitcoin-24324d83e8d9f0b9403ca1c333b594b77eaefb4c.tar.xz
-- version 0.3.17 releasev0.3.17
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@191 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'rpc.cpp')
-rw-r--r--rpc.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/rpc.cpp b/rpc.cpp
index 422113a449..a7066ab3e9 100644
--- a/rpc.cpp
+++ b/rpc.cpp
@@ -648,6 +648,8 @@ Value movecmd(const Array& params, bool fHelp)
"move <fromaccount> <toaccount> <amount> [minconf=1] [comment]\n"
"Move from one account in your wallet to another.");
+ throw runtime_error("under construction");
+
string strFrom = params[0].get_str();
string strTo = params[1].get_str();
int64 nAmount = AmountFromValue(params[2]);
@@ -709,6 +711,8 @@ Value sendfrom(const Array& params, bool fHelp)
"sendfrom <fromaccount> <tobitcoinaddress> <amount> [minconf=1] [comment] [comment-to]\n"
"<amount> is a real and is rounded to the nearest 0.01");
+ throw runtime_error("under construction");
+
string strAccount = params[0].get_str();
string strAddress = params[1].get_str();
int64 nAmount = AmountFromValue(params[2]);