aboutsummaryrefslogtreecommitdiff
path: root/src/simplewallet/simplewallet.cpp
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2018-02-20 17:49:05 +0200
committerRiccardo Spagni <ric@spagni.net>2018-02-20 17:49:05 +0200
commit46903ec26a1fee4c360e10502e921066b5224fac (patch)
tree78bd4e97bd3bf21103ea4355bef60830d3340204 /src/simplewallet/simplewallet.cpp
parent21335e5c6b1d62b6ec6a0badf95bef398e4dfbdc (diff)
parentfd57e13a8436f7a70c308d3af4d67ab623d47d40 (diff)
downloadmonzero-core-46903ec26a1fee4c360e10502e921066b5224fac.tar.gz
monzero-core-46903ec26a1fee4c360e10502e921066b5224fac.tar.xz
monzero-core-46903ec26a1fee4c360e10502e921066b5224fac.zip
Merge pull request #3294
fd57e13a simplewallet: typo in generate-from-multisig-keys (stoffu)
Diffstat (limited to 'src/simplewallet/simplewallet.cpp')
-rw-r--r--src/simplewallet/simplewallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp
index aa8c66f7a..c67a6bc6c 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())