From 0d916a667c8875ec8c60679a803cf751b8650639 Mon Sep 17 00:00:00 2001 From: tobtoht <41021257+tobtoht@users.noreply.github.com> Date: Mon, 8 Jul 2019 09:53:07 +0000 Subject: [PATCH] Fix incorrectly named binding for MMS send_signer_config command send_message_config isn't used anywhere else in the code, and it is clear from the help command that it should be named send_signer_config. --- src/simplewallet/simplewallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 02a099811..a5396ba39 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -3128,7 +3128,7 @@ simple_wallet::simple_wallet() tr("Available options:\n " "auto-send <1|0>\n " " Whether to automatically send newly generated messages right away.\n ")); - m_cmd_binder.set_handler("mms send_message_config", + m_cmd_binder.set_handler("mms send_signer_config", boost::bind(&simple_wallet::mms, this, _1), tr(USAGE_MMS_SEND_SIGNER_CONFIG), tr("Send completed signer config to all other authorized signers"));