diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-10-11 13:54:31 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-10-23 18:36:53 +0000 |
commit | 93e74269b31965505bdcc39e307a94d91b00e2bb (patch) | |
tree | c9df6f855e2e5aadb39a52bc92c72077d3b611c2 /src/wallet | |
parent | Merge pull request #5973 (diff) | |
download | monero-93e74269b31965505bdcc39e307a94d91b00e2bb.tar.xz |
wallet2: error out when we need a daemon password but have no prompt function
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/wallet2.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index c7374b896..74b8c02f1 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -385,6 +385,11 @@ std::unique_ptr<tools::wallet2> make_basic(const boost::program_options::variabl { auto parsed = tools::login::parse( 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); } ); |