From 6f81d2e45da8892c41c7f115e14ec91884146c31 Mon Sep 17 00:00:00 2001 From: Nik Bougalis Date: Fri, 25 Sep 2015 15:45:28 -0700 Subject: [PATCH] Warn if no outbound connections will be made --- src/ripple/app/main/Application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ripple/app/main/Application.cpp b/src/ripple/app/main/Application.cpp index 24bf557b7..c5a1610fa 100644 --- a/src/ripple/app/main/Application.cpp +++ b/src/ripple/app/main/Application.cpp @@ -1039,7 +1039,7 @@ void ApplicationImp::setup() { // Should this message be here, conceptually? In theory this sort // of message, if displayed, should be displayed from PeerFinder. - if (config_->PEER_PRIVATE && config_->IPS.empty ()) + if (config_->PEER_PRIVATE && config_->IPS_FIXED.empty ()) m_journal.warning << "No outbound peer connections will be made"; // VFALCO NOTE the state timer resets the deadlock detector.