2023-04-14 07:54:07 +00:00
|
|
|
|
namespace DistTestCore.Marketplace
|
|
|
|
|
{
|
|
|
|
|
public class GethStartupConfig
|
|
|
|
|
{
|
2023-04-17 08:31:14 +00:00
|
|
|
|
public GethStartupConfig(bool isBootstrapNode, string genesisJsonBase64, GethBootstrapNodeInfo bootstrapNode)
|
2023-04-14 07:54:07 +00:00
|
|
|
|
{
|
|
|
|
|
IsBootstrapNode = isBootstrapNode;
|
|
|
|
|
GenesisJsonBase64 = genesisJsonBase64;
|
2023-04-17 08:31:14 +00:00
|
|
|
|
BootstrapNode = bootstrapNode;
|
2023-04-14 07:54:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool IsBootstrapNode { get; }
|
|
|
|
|
public string GenesisJsonBase64 { get; }
|
2023-04-17 08:31:14 +00:00
|
|
|
|
public GethBootstrapNodeInfo BootstrapNode { get; }
|
2023-04-14 07:54:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|