From ec86134a0daa116dfbcc3403fae78ebb5d57368a Mon Sep 17 00:00:00 2001 From: Carlo Alberto Ferraris Date: Sat, 7 May 2011 18:34:32 +0200 Subject: Allow using the [from] parameter also from command-line --- rpc.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/rpc.cpp b/rpc.cpp index 69db71a80f..e8335cd51f 100644 --- a/rpc.cpp +++ b/rpc.cpp @@ -2087,6 +2087,7 @@ int CommandLineRPC(int argc, char *argv[]) if (strMethod == "sendfrom" && n > 2) ConvertTo(params[2]); if (strMethod == "sendfrom" && n > 3) ConvertTo(params[3]); if (strMethod == "listtransactions" && n > 1) ConvertTo(params[1]); + if (strMethod == "listtransactions" && n > 2) ConvertTo(params[2]); if (strMethod == "listaccounts" && n > 0) ConvertTo(params[0]); if (strMethod == "sendmany" && n > 1) { -- cgit v1.2.3