From a22eed6a1ef5a1bb11c6ebee5554ca9919901eb9 Mon Sep 17 00:00:00 2001 From: Gregory Maxwell Date: Thu, 5 Sep 2013 17:54:31 -0700 Subject: [PATCH] Make settxfee clear that units are btc/kb. --- src/rpcblockchain.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rpcblockchain.cpp b/src/rpcblockchain.cpp index ba346f19d..adff708a0 100644 --- a/src/rpcblockchain.cpp +++ b/src/rpcblockchain.cpp @@ -108,8 +108,8 @@ Value settxfee(const Array& params, bool fHelp) { if (fHelp || params.size() < 1 || params.size() > 1) throw runtime_error( - "settxfee \n" - " is a real and is rounded to the nearest 0.00000001"); + "settxfee \n" + " is a real and is rounded to the nearest 0.00000001 btc per kb"); // Amount int64 nAmount = 0;