mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 08:17:37 +00:00
wallet2: error out when we need a daemon password but have no prompt function
This commit is contained in:
parent
4233d88341
commit
93e74269b3
1 changed files with 5 additions and 0 deletions
|
@ -385,6 +385,11 @@ std::unique_ptr<tools::wallet2> make_basic(const boost::program_options::variabl
|
||||||
{
|
{
|
||||||
auto parsed = tools::login::parse(
|
auto parsed = tools::login::parse(
|
||||||
command_line::get_arg(vm, opts.daemon_login), false, [password_prompter](bool verify) {
|
command_line::get_arg(vm, opts.daemon_login), false, [password_prompter](bool verify) {
|
||||||
|
if (!password_prompter)
|
||||||
|
{
|
||||||
|
MERROR("Password needed without prompt function");
|
||||||
|
return boost::optional<tools::password_container>();
|
||||||
|
}
|
||||||
return password_prompter("Daemon client password", verify);
|
return password_prompter("Daemon client password", verify);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue