From 8c4c173ce67415e7dd7d0cd2a3be13633828cc1f Mon Sep 17 00:00:00 2001 From: clemahieu Date: Wed, 11 Feb 2015 23:30:21 -0600 Subject: [PATCH] Printing frontiers as account numbers. --- rai/node.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rai/node.cpp b/rai/node.cpp index e9056ce8..13832677 100644 --- a/rai/node.cpp +++ b/rai/node.cpp @@ -4346,7 +4346,7 @@ void rai::frontier_req_server::send_next () auto this_l (shared_from_this ()); if (connection->node->logging.network_logging ()) { - BOOST_LOG (connection->node->log) << boost::str (boost::format ("Sending frontier for %1% %2%") % pair.first.to_string () % pair.second.to_string ()); + BOOST_LOG (connection->node->log) << boost::str (boost::format ("Sending frontier for %1% %2%") % pair.first.to_base58check () % pair.second.to_string ()); } async_write (*connection->socket, boost::asio::buffer (send_buffer.data (), send_buffer.size ()), [this_l] (boost::system::error_code const & ec, size_t size_a) {