From adef6a2984c13ce882261036a01ba610fe11ff1d Mon Sep 17 00:00:00 2001 From: Alfredo Date: Thu, 15 Nov 2018 18:54:02 -0300 Subject: [PATCH] fix cli wallet test --- tests/cli/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/cli/main.cpp b/tests/cli/main.cpp index 393dce4d83..16b29e125d 100644 --- a/tests/cli/main.cpp +++ b/tests/cli/main.cpp @@ -114,10 +114,10 @@ int get_available_port() std::shared_ptr start_application(fc::temp_directory& app_dir, int& server_port_number) { std::shared_ptr app1(new graphene::app::application{}); - app1->register_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(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