When running:
0./build/bin/bitcoind -daemon -server=1 -onion=127.0.0.1:9050 -externalip=<hostname_addr> -listen -cjdnsreachable
only two Tor addresses appear under Local addresses and no CJDNS addresses in bitcoin-cli -netinfo 4
. The log also shows two AddLocal(...)
entries for the onion address, but none for the CJDNS address. However, adding a CJDNS peer via addnode ... add
works as expected.
In contrast, running:
0./build/bin/bitcoind -daemon -listen -cjdnsreachable
shows one Tor address and one CJDNS address in Local addresses. The log also includes one AddLocal(...)
for the onion address and one for the CJDNS address, and peer addition works normally.
This seems inconsistent: in the first case, shouldn’t the CJDNS address also appear in Local addresses and be logged with AddLocal(<cjdns_addr>)
?