Merge pull request #10870

4036e14 wallet: rpc; dont allow startup with missing ssl params (nahuhh)

ACKs: selsta, SNeedlewoods
This commit is contained in:
tobtoht
2026-07-13 06:43:09 +00:00
+9
View File
@@ -4988,6 +4988,15 @@ public:
if (!wallet_dir.empty())
{
try
{
tools::wallet2::make_dummy(vm, true, password_prompt);
}
catch (const std::exception &e)
{
LOG_ERROR(tools::wallet_rpc_server::tr("Invalid configuration: ") << e.what());
return false;
}
wal = NULL;
goto just_dir;
}