@@ -410,8 +410,9 @@ namespace detail {
410
410
_force_validate = true ;
411
411
}
412
412
413
- if ( _options->count (" enable-subscribe-to-all" ) )
414
- _app_options.enable_subscribe_to_all = _options->at (" enable-subscribe-to-all" ).as <bool >();
413
+ // TODO uncomment this when GUI is ready
414
+ // if( _options->count("enable-subscribe-to-all") )
415
+ // _app_options.enable_subscribe_to_all = _options->at("enable-subscribe-to-all").as<bool>();
415
416
416
417
if ( _active_plugins.find ( " market_history" ) != _active_plugins.end () )
417
418
_app_options.has_market_history_plugin = true ;
@@ -955,8 +956,9 @@ void application::set_program_options(boost::program_options::options_descriptio
955
956
(" dbg-init-key" , bpo::value<string>(), " Block signing key to use for init witnesses, overrides genesis file" )
956
957
(" api-access" , bpo::value<boost::filesystem::path>(), " JSON file specifying API permissions" )
957
958
(" plugins" , bpo::value<string>(), " Space-separated list of plugins to activate" )
958
- (" enable-subscribe-to-all" , bpo::value<bool >()->implicit_value (false ),
959
- " Whether allow API clients to subscribe to universal object creation and removal events" )
959
+ // TODO uncomment this when GUI is ready
960
+ // ("enable-subscribe-to-all", bpo::value<bool>()->implicit_value(false),
961
+ // "Whether allow API clients to subscribe to universal object creation and removal events")
960
962
;
961
963
command_line_options.add (configuration_file_options);
962
964
command_line_options.add_options ()
0 commit comments