aboutsummaryrefslogtreecommitdiff
path: root/src/daemon
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2020-04-04 12:47:31 -0500
committerluigi1111 <luigi1111w@gmail.com>2020-04-04 12:47:31 -0500
commitc4f75fe898992d502e2ef3b6c9d88bc523690403 (patch)
tree573c7c7c8f8ddf5f39fec89071b07aad42bd10d0 /src/daemon
parentMerge pull request #6338 (diff)
parentremove empty statements (diff)
downloadmonero-c4f75fe898992d502e2ef3b6c9d88bc523690403.tar.xz
Merge pull request #6339
c61abf8 remove empty statements (shopglobal)
Diffstat (limited to 'src/daemon')
-rw-r--r--src/daemon/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/main.cpp b/src/daemon/main.cpp
index 8fa983fe5..3e25636d8 100644
--- a/src/daemon/main.cpp
+++ b/src/daemon/main.cpp
@@ -69,7 +69,7 @@ uint16_t parse_public_rpc_port(const po::variables_map &vm)
const auto &restricted_rpc_port = cryptonote::core_rpc_server::arg_rpc_restricted_bind_port;
if (!command_line::is_arg_defaulted(vm, restricted_rpc_port))
{
- rpc_port_str = command_line::get_arg(vm, restricted_rpc_port);;
+ rpc_port_str = command_line::get_arg(vm, restricted_rpc_port);
}
else if (command_line::get_arg(vm, cryptonote::core_rpc_server::arg_restricted_rpc))
{