2
0
mirror of synced 2025-01-13 10:04:29 +00:00
2023-04-25 11:31:15 +02:00

23 lines
569 B
C#

using Logging;
using NethereumWorkflow;
namespace DistTestCore.Marketplace
{
public class MarketplaceNetwork
{
public MarketplaceNetwork(GethBootstrapNodeInfo bootstrap, MarketplaceInfo marketplace)
{
Bootstrap = bootstrap;
Marketplace = marketplace;
}
public GethBootstrapNodeInfo Bootstrap { get; }
public MarketplaceInfo Marketplace { get; }
public NethereumInteraction StartInteraction(BaseLog log)
{
return Bootstrap.StartInteraction(log);
}
}
}