From b13c65dacb55e79e1148493fa6c794af678c8660 Mon Sep 17 00:00:00 2001 From: Filipe Farinha Date: Wed, 17 Jan 2018 01:43:09 +0800 Subject: [PATCH] withdraw: Swap 'satoshi' and 'destination' params to match online help. --- wallet/walletrpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallet/walletrpc.c b/wallet/walletrpc.c index 0fd5270b6..a769adec1 100644 --- a/wallet/walletrpc.c +++ b/wallet/walletrpc.c @@ -306,7 +306,7 @@ static void json_withdraw(struct command *cmd, static const struct json_command withdraw_command = { "withdraw", json_withdraw, - "Send {satoshi} (or 'all') to the {destination} address via Bitcoin transaction", + "Send to {destination} address {satoshi} (or 'all') amount via Bitcoin transaction", "Returns the withdrawal transaction ID" }; AUTODATA(json_command, &withdraw_command);