aboutsummaryrefslogtreecommitdiff
path: root/src/daemon
diff options
context:
space:
mode:
authorMaxithi <34792056+Maxithi@users.noreply.github.com>2018-01-09 22:37:30 +0100
committerMaxithi <34792056+Maxithi@users.noreply.github.com>2018-01-29 12:13:23 +0100
commita85dbb3f2f1cef8f9f973b9fa94b073e42bcee2c (patch)
tree1d3c7a47f1a6bbb9786700cb5cb7d049ffe1a9b2 /src/daemon
parentMerge pull request #3019 (diff)
downloadmonero-a85dbb3f2f1cef8f9f973b9fa94b073e42bcee2c.tar.xz
Fixed typos and wording tweaks
Diffstat (limited to 'src/daemon')
-rw-r--r--src/daemon/rpc.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/daemon/rpc.h b/src/daemon/rpc.h
index 9b7438053..d149a4100 100644
--- a/src/daemon/rpc.h
+++ b/src/daemon/rpc.h
@@ -60,28 +60,28 @@ public:
)
: m_server{core.get(), p2p.get()}, m_description{description}
{
- MGINFO("Initializing " << m_description << " rpc server...");
+ MGINFO("Initializing " << m_description << " RPC server...");
if (!m_server.init(vm, restricted, testnet, port))
{
- throw std::runtime_error("Failed to initialize " + m_description + " rpc server.");
+ throw std::runtime_error("Failed to initialize " + m_description + " RPC server.");
}
- MGINFO(m_description << " rpc server initialized OK on port: " << m_server.get_binded_port());
+ MGINFO(m_description << " RPC server initialized OK on port: " << m_server.get_binded_port());
}
void run()
{
- MGINFO("Starting " << m_description << " rpc server...");
+ MGINFO("Starting " << m_description << " RPC server...");
if (!m_server.run(2, false))
{
- throw std::runtime_error("Failed to start " + m_description + " rpc server.");
+ throw std::runtime_error("Failed to start " + m_description + " RPC server.");
}
- MGINFO(m_description << " rpc server started ok");
+ MGINFO(m_description << " RPC server started ok");
}
void stop()
{
- MGINFO("Stopping " << m_description << " rpc server...");
+ MGINFO("Stopping " << m_description << " RPC server...");
m_server.send_stop_signal();
m_server.timed_wait_server_stop(5000);
}
@@ -93,11 +93,11 @@ public:
~t_rpc()
{
- MGINFO("Deinitializing " << m_description << " rpc server...");
+ MGINFO("Deinitializing " << m_description << " RPC server...");
try {
m_server.deinit();
} catch (...) {
- MERROR("Failed to deinitialize " << m_description << " rpc server...");
+ MERROR("Failed to deinitialize " << m_description << " RPC server...");
}
}
};