Skip to content

Commit adef6a2

Browse files
committed
fix cli wallet test
1 parent f5031bd commit adef6a2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/cli/main.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,10 @@ int get_available_port()
114114
std::shared_ptr<graphene::app::application> start_application(fc::temp_directory& app_dir, int& server_port_number) {
115115
std::shared_ptr<graphene::app::application> app1(new graphene::app::application{});
116116

117-
app1->register_plugin<graphene::account_history::account_history_plugin>();
118-
app1->register_plugin< graphene::market_history::market_history_plugin >();
119-
app1->register_plugin< graphene::witness_plugin::witness_plugin >();
120-
app1->register_plugin< graphene::grouped_orders::grouped_orders_plugin>();
117+
app1->register_plugin<graphene::account_history::account_history_plugin>(true);
118+
app1->register_plugin< graphene::market_history::market_history_plugin >(true);
119+
app1->register_plugin< graphene::witness_plugin::witness_plugin >(true);
120+
app1->register_plugin< graphene::grouped_orders::grouped_orders_plugin>(true);
121121
app1->startup_plugins();
122122
boost::program_options::variables_map cfg;
123123
#ifdef _WIN32

0 commit comments

Comments
 (0)