diff options
author | tobtoht <41021257+tobtoht@users.noreply.github.com> | 2019-07-08 09:53:07 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-08 09:53:07 +0000 |
commit | 0d916a667c8875ec8c60679a803cf751b8650639 (patch) | |
tree | 9c71c3c5cad38c11ec97e2a2a9dae23506c904aa | |
parent | Merge pull request #5663 (diff) | |
download | monero-0d916a667c8875ec8c60679a803cf751b8650639.tar.xz |
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.
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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")); |