aboutsummaryrefslogtreecommitdiff
path: root/src/rpc.cpp
diff options
context:
space:
mode:
authorGiel van Schijndel <me@mortis.eu>2011-07-13 13:43:24 +0200
committerGiel van Schijndel <me@mortis.eu>2011-07-13 13:43:24 +0200
commit93752b8a3934468942d235b3920162c36384b45a (patch)
tree98b55530f9c9a96e611545a16fd4626841af2c30 /src/rpc.cpp
parent225e60ce34d8756f23e7e76b545131601f60e1dc (diff)
downloadbitcoin-93752b8a3934468942d235b3920162c36384b45a.tar.xz
fix warning: variable ‘nMinDepth’ set but not used [-Wunused-but-set-variable]
Signed-off-by: Giel van Schijndel <me@mortis.eu>
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 4016d265c4..fa14fc0b2f 100644
--- a/src/rpc.cpp
+++ b/src/rpc.cpp
@@ -765,9 +765,9 @@ Value movecmd(const Array& params, bool fHelp)
string strFrom = AccountFromValue(params[0]);
string strTo = AccountFromValue(params[1]);
int64 nAmount = AmountFromValue(params[2]);
- int nMinDepth = 1;
if (params.size() > 3)
- nMinDepth = params[3].get_int();
+ // unused parameter, used to be nMinDepth, keep type-checking it though
+ (void)params[3].get_int();
string strComment;
if (params.size() > 4)
strComment = params[4].get_str();