From 31c45a927eaac934fb237433f156907092bf1d11 Mon Sep 17 00:00:00 2001 From: Jonas Schnelli Date: Fri, 13 Oct 2017 21:17:51 -0700 Subject: Accept addresses with NODE_NETWORK_LIMITED flag --- src/protocol.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/protocol.h') diff --git a/src/protocol.h b/src/protocol.h index 42eb57e4f0..ec5f55e4f6 100644 --- a/src/protocol.h +++ b/src/protocol.h @@ -316,10 +316,10 @@ static inline bool HasAllDesirableServiceFlags(ServiceFlags services) { /** * Checks if a peer with the given service flags may be capable of having a - * robust address-storage DB. Currently an alias for checking NODE_NETWORK. + * robust address-storage DB. */ static inline bool MayHaveUsefulAddressDB(ServiceFlags services) { - return services & NODE_NETWORK; + return (services & NODE_NETWORK) || (services & NODE_NETWORK_LIMITED); } /** A CService with information about it as peer */ -- cgit v1.2.3