Hi
I have a node (say, node1) running on a specific network and rpc port (7333, 7332). I generated a new address and granted it connect, send, receive permissions.
Then, did "dumpprivkey my_address" to get the corresponding private key.
I tried to connect to this chain by starting another node (say, node2) on a different network and rpc ports, and this was my command
"multichaind testchain1@10.0.2.15:7333 -datadir=~/.multichain-other-5 -port=10333 -rpcport=10332 initprivkey=V8odv8EBR6F91qGfNZdsHiWXqmiZLJH1TGWmQyHGbtQSyWH1u6E21twv -daemon
The input to initprivkey was exactly the same as the output of dumpprivkey on node1. Still this second node generates a new random address. Am I sending the argument incorrectly or doing something else wrongly?