public MineController(Chain chain, List <Node> nodes, IOptions <BlockChainOptions> options) { _chain = chain; _nodes = nodes; _options = options.Value; }
public NodeController(List <Node> nodes, IOptions <BlockChainOptions> options, Chain chain) { _nodes = nodes; _chain = chain; _options = options.Value; }