mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-23 07:15:29 +01:00
net: relay CJDNS addresses even if we are not connected to CJDNS
This will help with propagation, so that multi-homed nodes can learn CJDNS addresses outside of the CJDNS network.
This commit is contained in:
parent
d96f8d304c
commit
29ff79c0a2
1 changed files with 1 additions and 1 deletions
|
@ -224,7 +224,7 @@ public:
|
|||
*/
|
||||
bool IsRelayable() const
|
||||
{
|
||||
return IsIPv4() || IsIPv6() || IsTor() || IsI2P();
|
||||
return IsIPv4() || IsIPv6() || IsTor() || IsI2P() || IsCJDNS();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue