Merge pull request #3011

619bb723 daemon+simplewallet: given an unknown command, show it (stoffu)
This commit is contained in:
Riccardo Spagni 2018-01-25 16:34:45 -08:00
commit 92826e3d8b
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD
2 changed files with 3 additions and 2 deletions

View File

@ -269,7 +269,7 @@ int main(int argc, char const * argv[])
} }
else else
{ {
std::cerr << "Unknown command" << std::endl; std::cerr << "Unknown command: " << command.front() << std::endl;
return 1; return 1;
} }
} }

View File

@ -6624,7 +6624,8 @@ int main(int argc, char* argv[])
std::vector<std::string> command = command_line::get_arg(*vm, arg_command); std::vector<std::string> command = command_line::get_arg(*vm, arg_command);
if (!command.empty()) if (!command.empty())
{ {
w.process_command(command); if (!w.process_command(command))
fail_msg_writer() << tr("Unknown command: ") << command.front();
w.stop(); w.stop();
w.deinit(); w.deinit();
} }