$ iex --sname node1@localhost
$ iex --sname node2@localhost --hiddden
iex(node2@localhost)1> Node.connect(:node1@localhost)
true
iex(node2@localhost)2> Node.list()
[]
If I create one hidden and one normal node and connect them with Node.connect/1. Why do I get an empty list when I want to list all connected nodes on the hidden node? Is this a wanted behaviour?