mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-05 00:35:39 +00:00
19 lines
705 B
C#
19 lines
705 B
C#
namespace DistTestCore.Marketplace
|
|
{
|
|
public class GethStartupConfig
|
|
{
|
|
public GethStartupConfig(bool isBootstrapNode, GethBootstrapNodeInfo bootstrapNode, int companionAccountStartIndex, int numberOfCompanionAccounts)
|
|
{
|
|
IsBootstrapNode = isBootstrapNode;
|
|
BootstrapNode = bootstrapNode;
|
|
CompanionAccountStartIndex = companionAccountStartIndex;
|
|
NumberOfCompanionAccounts = numberOfCompanionAccounts;
|
|
}
|
|
|
|
public bool IsBootstrapNode { get; }
|
|
public GethBootstrapNodeInfo BootstrapNode { get; }
|
|
public int CompanionAccountStartIndex { get; }
|
|
public int NumberOfCompanionAccounts { get; }
|
|
}
|
|
}
|