I have working Corda network - Notary, NodeA, NodeB.
From the code nodes are available by
List nodeInfo = rpcOps.networkMapSnapshot();
Next, I have to add a new node NodeC to the existing network. Without restarting all the network. I have tried the next steps - Redeploying nodes in corda
New node NodeC started without any errors. But the network cannot see this NodeC. I think need to use specific service node for this aim. Any examples and best practice?
Thanks.