(
&'s mut self,
node_name: &NodeName,
node_config: &NodeConfig<'a, M>,
)
| 112 | } |
| 113 | |
| 114 | async fn create_node<'s, 'a>( |
| 115 | &'s mut self, |
| 116 | node_name: &NodeName, |
| 117 | node_config: &NodeConfig<'a, M>, |
| 118 | ) -> anyhow::Result<M::Node> |
| 119 | where |
| 120 | 's: 'a, |
| 121 | { |
| 122 | tracing::info!(%node_name, ctx=self.ctx, "create_node"); |
| 123 | self.inner.create_node(node_name, node_config).await |
| 124 | } |
| 125 | |
| 126 | async fn start_node<'s, 'a>( |
| 127 | &'s mut self, |
nothing calls this directly
no outgoing calls
no test coverage detected