diff options
author | Howard Chu <hyc@symas.com> | 2017-11-14 20:34:32 +0000 |
---|---|---|
committer | Howard Chu <hyc@symas.com> | 2017-11-14 20:34:32 +0000 |
commit | b85e82bf6a0c4e0598e29b92a9cc9437bb666360 (patch) | |
tree | 2d27bd6c69633ab51d7436f44ed000fe8c04568e /src/simplewallet | |
parent | Fix 437421ce42f1deaa7ec3f28c0c17aff519f1230d (diff) | |
download | monero-b85e82bf6a0c4e0598e29b92a9cc9437bb666360.tar.xz |
Fix e89994e98f85be95d68c7bf471fcadf9aabbc93a
Missed an input_line() change
Diffstat (limited to 'src/simplewallet')
-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 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()) { |