diff options
author | stoffu <stoffu@protonmail.ch> | 2018-02-19 09:51:30 +0900 |
---|---|---|
committer | stoffu <stoffu@protonmail.ch> | 2018-02-19 09:51:30 +0900 |
commit | fd57e13a8436f7a70c308d3af4d67ab623d47d40 (patch) | |
tree | 52cfb8cbbdd2148bd9eeec371fc1c0595141b5f3 | |
parent | Merge pull request #3275 (diff) | |
download | monero-fd57e13a8436f7a70c308d3af4d67ab623d47d40.tar.xz |
simplewallet: typo in generate-from-multisig-keys
-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 150c6333c..eb01cb377 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -2407,7 +2407,7 @@ bool simple_wallet::init(const boost::program_options::variables_map& vm) // get N secret spend keys from user for(unsigned int i=0; i<multisig_n; ++i) { - spendkey_string = input_line(tr((boost::format(tr("Secret spend key (%u of %u):")) % (i+i) % multisig_m).str().c_str())); + spendkey_string = input_line(tr((boost::format(tr("Secret spend key (%u of %u):")) % (i+1) % multisig_m).str().c_str())); if (std::cin.eof()) return false; if (spendkey_string.empty()) |