Merge pull request #4567

14ed029b simplewallet: fix view key parsing in --generate-from-view-key (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2018-10-15 13:26:29 +02:00
commit 175bfe4747
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD
1 changed files with 1 additions and 1 deletions

View File

@ -3032,7 +3032,7 @@ bool simple_wallet::init(const boost::program_options::variables_map& vm)
return false;
}
crypto::secret_key viewkey;
if (viewkey_string.hex_to_pod(unwrap(unwrap(viewkey))))
if (!viewkey_string.hex_to_pod(unwrap(unwrap(viewkey))))
{
fail_msg_writer() << tr("failed to parse view key secret key");
return false;