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

17 lines
549 B
C#
Raw Normal View History

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