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 | a3a617f35fea5bac01f78e5cb0e13fc8b093f6bb (diff) | |
| parent | 0b88fff3a5007ce87300d65902fbd504af4ae8c0 (diff) | |
| download | monzero-core-a429f06b18c812ccc4a8b17428c73588f87da8a1.tar.gz monzero-core-a429f06b18c812ccc4a8b17428c73588f87da8a1.tar.xz monzero-core-a429f06b18c812ccc4a8b17428c73588f87da8a1.zip | |
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.")); |
