aboutsummaryrefslogtreecommitdiff
path: root/src/rpc.cpp
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2011-05-09 14:26:41 -0400
committerGavin Andresen <[email protected]>2011-05-09 14:26:41 -0400
commite8adcf88cd36340cabef6e82dc18e712714f5081 (patch)
tree10fdf30403ca5124fa62ef78f14700900d3e0a3e /src/rpc.cpp
parentMerge branch 'master' of github.com:bitcoin/bitcoin (diff)
downloaddiscoin-e8adcf88cd36340cabef6e82dc18e712714f5081.tar.xz
discoin-e8adcf88cd36340cabef6e82dc18e712714f5081.zip
Help for sendtoaddress/sendfrom was wrong: amounts are rounded to 0.00000001
Diffstat (limited to 'src/rpc.cpp')
-rw-r--r--src/rpc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rpc.cpp b/src/rpc.cpp
index f95038303..3aec7efbe 100644
--- a/src/rpc.cpp
+++ b/src/rpc.cpp
@@ -470,7 +470,7 @@ Value sendtoaddress(const Array& params, bool fHelp)
if (fHelp || params.size() < 2 || params.size() > 4)
throw runtime_error(
"sendtoaddress <bitcoinaddress> <amount> [comment] [comment-to]\n"
- "<amount> is a real and is rounded to the nearest 0.01");
+ "<amount> is a real and is rounded to the nearest 0.00000001");
string strAddress = params[0].get_str();
@@ -748,7 +748,7 @@ Value sendfrom(const Array& params, bool fHelp)
if (fHelp || params.size() < 3 || params.size() > 6)
throw runtime_error(
"sendfrom <fromaccount> <tobitcoinaddress> <amount> [minconf=1] [comment] [comment-to]\n"
- "<amount> is a real and is rounded to the nearest 0.01");
+ "<amount> is a real and is rounded to the nearest 0.00000001");
string strAccount = AccountFromValue(params[0]);
string strAddress = params[1].get_str();