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