cs-codex-dist-tests/DistTestCore/Marketplace/GethStartupConfig.cs

15 lines
397 B
C#
Raw Normal View History

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