mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-10 19:16:46 +00:00
15 lines
278 B
C#
15 lines
278 B
C#
using GethPlugin;
|
|
|
|
namespace CodexContractsPlugin
|
|
{
|
|
public class CodexContractsContainerConfig
|
|
{
|
|
public CodexContractsContainerConfig(IGethNode gethNode)
|
|
{
|
|
GethNode = gethNode;
|
|
}
|
|
|
|
public IGethNode GethNode { get; }
|
|
}
|
|
}
|