Merge pull request #16 from paybee/master

simplewallet exits when COMMAND is given as a command-line argument
This commit is contained in:
monero-project 2014-05-26 10:07:04 -04:00
commit 377567534c

View file

@ -1054,14 +1054,20 @@ int main(int argc, char* argv[])
std::vector<std::string> command = command_line::get_arg(vm, arg_command);
if (!command.empty())
{
w.process_command(command);
tools::signal_handler::install([&w] {
w.stop();
});
w.run();
w.deinit();
}
else
{
tools::signal_handler::install([&w] {
w.stop();
});
w.run();
w.deinit();
w.deinit();
}
}
return 1;
//CATCH_ENTRY_L0("main", 1);