mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-06 23:43:07 +00:00
19 lines
691 B
C#
19 lines
691 B
C#
namespace GethPlugin
|
|
{
|
|
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; }
|
|
}
|
|
}
|