diff options
author | Interchained <president@worldvaporexpo.com> | 2020-02-14 18:35:53 -0500 |
---|---|---|
committer | Mark Evans <president@worldvaporexpo.com> | 2020-02-17 11:55:15 -0500 |
commit | c61abf87c0aa4157824326ff80670ad3ccc9e470 (patch) | |
tree | 94196dde14352eb38b1f977c8af02c183b6d3ba7 /src/daemon | |
parent | Merge pull request #6048 (diff) | |
download | monero-c61abf87c0aa4157824326ff80670ad3ccc9e470.tar.xz |
remove empty statements
Cleaning up a little around the code base.
Diffstat (limited to 'src/daemon')
-rw-r--r-- | src/daemon/main.cpp | 2 |
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)) { |