| 1065 | namespace interfaces { |
| 1066 | std::unique_ptr<Node> MakeNode(node::NodeContext& context) { return std::make_unique<node::NodeImpl>(context); } |
| 1067 | std::unique_ptr<Chain> MakeChain(node::NodeContext& context) { return std::make_unique<node::ChainImpl>(context); } |
| 1068 | std::unique_ptr<Mining> MakeMining(const node::NodeContext& context, bool wait_loaded) |
| 1069 | { |
| 1070 | if (wait_loaded) { |
no outgoing calls