Missed an input_line() change
This commit is contained in:
Howard Chu 2017-11-14 20:34:32 +00:00
parent 95e784ad00
commit b85e82bf6a
No known key found for this signature in database
GPG Key ID: FD2A70B44AB11BA7
1 changed files with 1 additions and 1 deletions

View File

@ -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()) {