Skip to content

Commit

Permalink
fix cli wallet test
Browse files Browse the repository at this point in the history
  • Loading branch information
oxarbitrage committed Nov 15, 2018
1 parent f5031bd commit adef6a2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/cli/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ int get_available_port()
std::shared_ptr<graphene::app::application> start_application(fc::temp_directory& app_dir, int& server_port_number) {
std::shared_ptr<graphene::app::application> app1(new graphene::app::application{});

app1->register_plugin<graphene::account_history::account_history_plugin>();
app1->register_plugin< graphene::market_history::market_history_plugin >();
app1->register_plugin< graphene::witness_plugin::witness_plugin >();
app1->register_plugin< graphene::grouped_orders::grouped_orders_plugin>();
app1->register_plugin<graphene::account_history::account_history_plugin>(true);
app1->register_plugin< graphene::market_history::market_history_plugin >(true);
app1->register_plugin< graphene::witness_plugin::witness_plugin >(true);
app1->register_plugin< graphene::grouped_orders::grouped_orders_plugin>(true);
app1->startup_plugins();
boost::program_options::variables_map cfg;
#ifdef _WIN32
Expand Down

0 comments on commit adef6a2

Please sign in to comment.