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

19 lines
705 B
C#
Raw Normal View History

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