mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-21 11:35:53 +00:00
Rename NodeStore and add backend abstractions
This commit is contained in:
@@ -63,7 +63,7 @@ public:
|
||||
return mTempNodeCache;
|
||||
}
|
||||
|
||||
HashedObjectStore& getHashedObjectStore ()
|
||||
NodeStore& getHashedObjectStore ()
|
||||
{
|
||||
return mHashedObjectStore;
|
||||
}
|
||||
@@ -223,7 +223,7 @@ private:
|
||||
NetworkOPs mNetOps;
|
||||
RPCServerHandler m_rpcServerHandler;
|
||||
NodeCache mTempNodeCache;
|
||||
HashedObjectStore mHashedObjectStore;
|
||||
NodeStore mHashedObjectStore;
|
||||
SLECache mSLECache;
|
||||
SNTPClient mSNTPClient;
|
||||
JobQueue mJobQueue;
|
||||
|
||||
@@ -17,7 +17,7 @@ class IProofOfWorkFactory;
|
||||
class UniqueNodeList;
|
||||
class IValidations;
|
||||
|
||||
class HashedObjectStore;
|
||||
class NodeStore;
|
||||
class JobQueue;
|
||||
class InboundLedgers;
|
||||
class LedgerMaster;
|
||||
@@ -68,7 +68,7 @@ public:
|
||||
virtual UniqueNodeList& getUNL () = 0;
|
||||
virtual IValidations& getValidations () = 0;
|
||||
|
||||
virtual HashedObjectStore& getHashedObjectStore () = 0;
|
||||
virtual NodeStore& getHashedObjectStore () = 0;
|
||||
virtual JobQueue& getJobQueue () = 0;
|
||||
virtual InboundLedgers& getInboundLedgers () = 0;
|
||||
virtual LedgerMaster& getLedgerMaster () = 0;
|
||||
|
||||
Reference in New Issue
Block a user