| 673 | } |
| 674 | |
| 675 | fc::variant execute_interactive_command(const string& command, const fc::variants& arguments) |
| 676 | { |
| 677 | if (command == "quit" || command == "stop" || command == "exit") |
| 678 | { |
| 679 | _quit = true; |
| 680 | thinkyoung::client::g_client_quit = true; |
| 681 | FC_THROW_EXCEPTION(thinkyoung::cli::exit_cli_command, "quit command issued"); |
| 682 | } |
| 683 | |
| 684 | return execute_command(command, arguments); |
| 685 | } |
| 686 | |
| 687 | fc::variant execute_command(const string& command, const fc::variants& arguments) |
| 688 | { |
nothing calls this directly
no test coverage detected