From c881a8170d9962f3b84cbe0f7818e24e12b5588a Mon Sep 17 00:00:00 2001 From: Jozef Knaperek Date: Sat, 18 Nov 2017 11:35:25 +0100 Subject: [PATCH] Fix error message referring to the old p2p-port option --- libraries/net/node.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/net/node.cpp b/libraries/net/node.cpp index a0ebc24ce4..d7aa573a52 100644 --- a/libraries/net/node.cpp +++ b/libraries/net/node.cpp @@ -4564,7 +4564,7 @@ namespace graphene { namespace net { namespace detail { error_message_stream << "Unable to listen for connections on port " << listen_endpoint.port() << ", retrying in a few seconds\n"; error_message_stream << "You can wait for it to become available, or restart this program using\n"; - error_message_stream << "the --p2p-port option to specify another port\n"; + error_message_stream << "the --p2p-endpoint option to specify another port\n"; first = false; } else