diff --git a/src/daemonizer/windows_service.cpp b/src/daemonizer/windows_service.cpp index f1b86afb3..c58f9cfd9 100644 --- a/src/daemonizer/windows_service.cpp +++ b/src/daemonizer/windows_service.cpp @@ -224,9 +224,6 @@ bool start_service( { tools::msg_writer() << "Starting service"; - SERVICE_STATUS_PROCESS service_status = {}; - DWORD unused = 0; - service_handle p_manager{ OpenSCManager( nullptr @@ -353,7 +350,6 @@ bool uninstall_service( return false; } - SERVICE_STATUS status = {}; if (!DeleteService(p_service.get())) { tools::fail_msg_writer() << "Couldn't uninstall service: " << get_last_error(); diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index b073357cb..1f5f152c1 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -4095,7 +4095,7 @@ void wallet2::refresh(bool trusted_daemon, uint64_t start_height, uint64_t & blo // "I had to reorder some code to fix... a timing info leak IIRC. In turn, this undid something I had fixed before, ... a subtle race condition with the txpool. // It was pretty subtle IIRC, and so I needed time to think about how to refix it after the move, and I never got to it." // https://github.com/monero-project/monero/pull/6097 - bool refreshed = false; + // bool refreshed = false; std::shared_ptr, size_t>> output_tracker_cache; hw::device &hwdev = m_account.get_device();