15 lines
397 B
C#
Raw Normal View History

2023-04-14 09:54:07 +02:00
namespace DistTestCore.Marketplace
{
public class GethStartupConfig
{
2023-04-19 07:59:28 +02:00
public GethStartupConfig(bool isBootstrapNode, GethBootstrapNodeInfo bootstrapNode)
2023-04-14 09:54:07 +02:00
{
IsBootstrapNode = isBootstrapNode;
BootstrapNode = bootstrapNode;
2023-04-14 09:54:07 +02:00
}
public bool IsBootstrapNode { get; }
public GethBootstrapNodeInfo BootstrapNode { get; }
2023-04-14 09:54:07 +02:00
}
}