From 3050a4f05b409a838802fa5f90375e061b15453a Mon Sep 17 00:00:00 2001 From: stoffu Date: Thu, 11 Jan 2018 23:14:13 +0900 Subject: [PATCH] simplewallet: fix typo get_tx_proof_out to get_tx_proof --- src/simplewallet/simplewallet.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index b6b6da441..1e55f02a1 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -1674,9 +1674,9 @@ simple_wallet::simple_wallet() boost::bind(&simple_wallet::check_tx_key, this, _1), tr("check_tx_key
"), tr("Check the amount going to
in .")); - m_cmd_binder.set_handler("get_tx_proof_out", + m_cmd_binder.set_handler("get_tx_proof", boost::bind(&simple_wallet::get_tx_proof, this, _1), - tr("get_tx_proof_out
[]"), + tr("get_tx_proof
[]"), tr("Generate a signature proving funds sent to
in , optionally with a challenge string , using either the transaction secret key (when
is not your wallet's address) or the view secret key (otherwise), which does not disclose the secret key.")); m_cmd_binder.set_handler("check_tx_proof", boost::bind(&simple_wallet::check_tx_proof, this, _1), @@ -4858,7 +4858,7 @@ bool simple_wallet::get_tx_proof(const std::vector &args) { if (args.size() != 2 && args.size() != 3) { - fail_msg_writer() << tr("usage: get_tx_proof_out
[]"); + fail_msg_writer() << tr("usage: get_tx_proof
[]"); return true; }