From 60b606ac43b791f356cc29b5fff6f7073fbaa5f2 Mon Sep 17 00:00:00 2001 From: Devin Alexander Torres Date: Thu, 7 Feb 2019 21:17:10 -0600 Subject: [PATCH] Update missed rai:: references to nano:: (#1709) --- nano/node/rpc_secure.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nano/node/rpc_secure.cpp b/nano/node/rpc_secure.cpp index 8999a38b..ca8effbc 100644 --- a/nano/node/rpc_secure.cpp +++ b/nano/node/rpc_secure.cpp @@ -181,7 +181,7 @@ void nano::rpc_connection_secure::read () { case boost::beast::http::verb::post: { - auto handler (std::make_shared (*this_l->node, this_l->rpc, this_l->request.body (), request_id, response_handler)); + auto handler (std::make_shared (*this_l->node, this_l->rpc, this_l->request.body (), request_id, response_handler)); handler->process_request (); break; } @@ -195,7 +195,7 @@ void nano::rpc_connection_secure::read () // Perform the SSL shutdown this_l->stream.async_shutdown ( std::bind ( - &rai::rpc_connection_secure::on_shutdown, + &nano::rpc_connection_secure::on_shutdown, this_l, std::placeholders::_1));