/// <summary>
 /// Get the default configuration. Invoked via reflection.
 /// </summary>
 /// <param name="builder">The string builder to add the settings to.</param>
 /// <param name="network">The network to base the defaults off.</param>
 public static new void BuildDefaultConfigurationFile(StringBuilder builder, Network network)
 {
     ConsensusFeature.BuildDefaultConfigurationFile(builder, network);
 }
 /// <summary>
 /// Prints command-line help. Invoked via reflection.
 /// </summary>
 /// <param name="network">The network to extract values from.</param>
 public static new void PrintHelp(Network network)
 {
     ConsensusFeature.PrintHelp(network);
 }