diff options
author | Riccardo Spagni <ric@spagni.net> | 2019-01-18 09:22:36 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2019-01-18 09:22:36 +0200 |
commit | 851c94eab84e0aa9a8a12282579b1f489bb91197 (patch) | |
tree | 17d297168c70af5668c0793842357946edf6b4cb | |
parent | Merge pull request #5043 (diff) | |
parent | simplewallet: fix help text of rescan_bc to mention the "hard" option (diff) | |
download | monero-851c94eab84e0aa9a8a12282579b1f489bb91197.tar.xz |
Merge pull request #4966
1717e635 simplewallet: fix help text of rescan_bc to mention the "hard" option (stoffu)
-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 e23fb3836..05556b95a 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -2783,7 +2783,7 @@ simple_wallet::simple_wallet() m_cmd_binder.set_handler("rescan_bc", boost::bind(&simple_wallet::rescan_blockchain, this, _1), tr(USAGE_RESCAN_BC), - tr("Rescan the blockchain from scratch, losing any information which can not be recovered from the blockchain itself.")); + tr("Rescan the blockchain from scratch. If \"hard\" is specified, you will lose any information which can not be recovered from the blockchain itself.")); m_cmd_binder.set_handler("set_tx_note", boost::bind(&simple_wallet::set_tx_note, this, _1), tr(USAGE_SET_TX_NOTE), |