diff --git a/CHANGELOG.md b/CHANGELOG.md index 913755651..7335fcac3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,7 +29,7 @@ at anytime. ### Deprecated * The API will no longer be served at the /lbryapi path. It will now be at the root. - * + * Deprecated `send_amount_to_address` in favor of `wallet_send` ### Changed * Renamed `reflect` command to `file_reflect` diff --git a/lbrynet/daemon/Daemon.py b/lbrynet/daemon/Daemon.py index 927eb0660..44da269b9 100644 --- a/lbrynet/daemon/Daemon.py +++ b/lbrynet/daemon/Daemon.py @@ -2243,15 +2243,15 @@ class Daemon(AuthJSONRPCServer): @AuthJSONRPCServer.auth_required @defer.inlineCallbacks - def jsonrpc_wallet_send(self, address=None, claim_id=None, amount=None): + def jsonrpc_wallet_send(self, amount, address=None, claim_id=None): """ Send credits. If given an address, send credits to it. If given a claim id, send a tip to the owner of a claim specified by uri. A tip is a claim support where the recipient of the support is the claim address for the claim being supported. Usage: - wallet_send ((
| --address=) | (