mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-04 16:24:22 +00:00
15 lines
397 B
C#
15 lines
397 B
C#
namespace DistTestCore.Marketplace
|
|
{
|
|
public class GethStartupConfig
|
|
{
|
|
public GethStartupConfig(bool isBootstrapNode, GethBootstrapNodeInfo bootstrapNode)
|
|
{
|
|
IsBootstrapNode = isBootstrapNode;
|
|
BootstrapNode = bootstrapNode;
|
|
}
|
|
|
|
public bool IsBootstrapNode { get; }
|
|
public GethBootstrapNodeInfo BootstrapNode { get; }
|
|
}
|
|
}
|