mirror of
https://github.com/vacp2p/cs-codex-dist-tests.git
synced 2025-02-24 16:28:30 +00:00
17 lines
523 B
C#
17 lines
523 B
C#
namespace DistTestCore.Marketplace
|
|
{
|
|
public class GethStartupConfig
|
|
{
|
|
public GethStartupConfig(bool isBootstrapNode, string genesisJsonBase64, GethBootstrapNodeInfo bootstrapNode)
|
|
{
|
|
IsBootstrapNode = isBootstrapNode;
|
|
GenesisJsonBase64 = genesisJsonBase64;
|
|
BootstrapNode = bootstrapNode;
|
|
}
|
|
|
|
public bool IsBootstrapNode { get; }
|
|
public string GenesisJsonBase64 { get; }
|
|
public GethBootstrapNodeInfo BootstrapNode { get; }
|
|
}
|
|
}
|