From 24324d83e8d9f0b9403ca1c333b594b77eaefb4c Mon Sep 17 00:00:00 2001 From: s_nakamoto Date: Thu, 25 Nov 2010 20:41:57 +0000 Subject: -- version 0.3.17 release git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@191 1a98c847-1fd6-4fd8-948a-caf3550aa51b --- rpc.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'rpc.cpp') 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 [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 [minconf=1] [comment] [comment-to]\n" " 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]); -- cgit v1.2.3