diff --git a/llarp/service/endpoint.cpp b/llarp/service/endpoint.cpp index 7d37e6113..183b0a0ca 100644 --- a/llarp/service/endpoint.cpp +++ b/llarp/service/endpoint.cpp @@ -572,7 +572,7 @@ namespace llarp bool Endpoint::ShouldPublishDescriptors(llarp_time_t now) const { - if(NumInStatus(llarp::path::eEstablished) < 3) + if(NumInStatus(llarp::path::ePathEstablished) < 3) return false; if(m_IntroSet.HasExpiredIntros(now)) return now - m_LastPublishAttempt >= INTROSET_PUBLISH_RETRY_INTERVAL;