Fix build references to deleted ServerHandlerImp: (#4592)

* Commits 0b812cd (#4427) and 11e914f (#4516) conflict. The first added
  references to `ServerHandlerImp` in files outside of that class's
  organizational unit (which is technically incorrect). The second
  removed `ServerHandlerImp`, but was not up to date with develop. This
  results in the build failing.
* Fixes the build by changing references to `ServerHandlerImp` to
  the more correct `ServerHandler`.
This commit is contained in:
Ed Hennis
2023-06-28 16:23:12 -04:00
committed by GitHub
parent 11e914fbe9
commit 4111382a31
3 changed files with 4 additions and 4 deletions

View File

@@ -602,7 +602,7 @@ public:
return *m_networkOPs;
}
virtual ServerHandlerImp&
virtual ServerHandler&
getServerHandler() override
{
assert(serverHandler_);

View File

@@ -89,7 +89,7 @@ class Overlay;
class PathRequests;
class PendingSaves;
class PublicKey;
class ServerHandlerImp;
class ServerHandler;
class SecretKey;
class STLedgerEntry;
class TimeKeeper;
@@ -232,7 +232,7 @@ public:
getOPs() = 0;
virtual OrderBookDB&
getOrderBookDB() = 0;
virtual ServerHandlerImp&
virtual ServerHandler&
getServerHandler() = 0;
virtual TransactionMaster&
getMasterTransaction() = 0;

View File

@@ -64,8 +64,8 @@
#include <ripple/resource/ResourceManager.h>
#include <ripple/rpc/BookChanges.h>
#include <ripple/rpc/DeliveredAmount.h>
#include <ripple/rpc/ServerHandler.h>
#include <ripple/rpc/impl/RPCHelpers.h>
#include <ripple/rpc/impl/ServerHandlerImp.h>
#include <boost/asio/ip/host_name.hpp>
#include <boost/asio/steady_timer.hpp>