diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-04-21 21:58:52 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-04-21 21:58:52 +0200 |
commit | a429f06b18c812ccc4a8b17428c73588f87da8a1 (patch) | |
tree | 3d0d182b08ad8beaea54e8fc9936b5491c0643d5 /src | |
parent | Merge pull request #3576 (diff) | |
parent | simplewallet: fix help message of sign_transfer (diff) | |
download | monero-a429f06b18c812ccc4a8b17428c73588f87da8a1.tar.xz |
Merge pull request #3579
0b88fff3 simplewallet: fix help message of sign_transfer (stoffu)
Diffstat (limited to 'src')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index f5a075f54..639b394f3 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -2081,8 +2081,8 @@ simple_wallet::simple_wallet() tr("Donate <amount> to the development team (donate.getmonero.org).")); m_cmd_binder.set_handler("sign_transfer", boost::bind(&simple_wallet::sign_transfer, this, _1), - tr("sign_transfer <file>"), - tr("Sign a transaction from a <file>.")); + tr("sign_transfer [export]"), + tr("Sign a transaction from a file.")); m_cmd_binder.set_handler("submit_transfer", boost::bind(&simple_wallet::submit_transfer, this, _1), tr("Submit a signed transaction from a file.")); |