aboutsummaryrefslogtreecommitdiff
path: root/src/simplewallet/simplewallet.cpp
diff options
context:
space:
mode:
authorHoward Chu <hyc@symas.com>2017-11-14 20:34:32 +0000
committerHoward Chu <hyc@symas.com>2017-11-14 20:34:32 +0000
commitb85e82bf6a0c4e0598e29b92a9cc9437bb666360 (patch)
tree2d27bd6c69633ab51d7436f44ed000fe8c04568e /src/simplewallet/simplewallet.cpp
parent95e784ad00adadc858858f4ddba8047994ac1f17 (diff)
downloadmonzero-core-b85e82bf6a0c4e0598e29b92a9cc9437bb666360.tar.gz
monzero-core-b85e82bf6a0c4e0598e29b92a9cc9437bb666360.tar.xz
monzero-core-b85e82bf6a0c4e0598e29b92a9cc9437bb666360.zip
Fix e89994e98f85be95d68c7bf471fcadf9aabbc93a
Missed an input_line() change
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 19a0614ec..699690ac3 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -1270,7 +1270,7 @@ bool simple_wallet::init(const boost::program_options::variables_map& vm)
{
m_wallet_file = m_generate_from_spend_key;
// parse spend secret key
- std::string spendkey_string = command_line::input_line("Secret spend key: ");
+ std::string spendkey_string = input_line("Secret spend key: ");
if (std::cin.eof())
return false;
if (spendkey_string.empty()) {