wallet: report exact reason for open_wallet failure.

This commit is contained in:
0xFFFC0000 2024-11-19 19:49:02 +00:00
parent 58a1d54a4f
commit 20a1c00b6c

View File

@ -3466,7 +3466,7 @@ namespace tools
if (!wal)
{
er.code = WALLET_RPC_ERROR_CODE_UNKNOWN_ERROR;
er.message = "Failed to open wallet";
er.message = "Failed to open wallet : " + (!er.message.empty() ? er.message : "Unknown.");
return false;
}