mirror of
https://github.com/EvernodeXRPL/hpcore.git
synced 2026-04-29 15:37:59 +00:00
- Creating two separate hpfs folders for contract and ledger file systems (contract_fs and ledger_fs). - Added separate mounts for contract and ledger file systems. - Added separate instances for contract serving and ledger serving. - Added separate instances for contract syncing and ledger syncing. - Modified cluster creating script to accompany folder name changes in contract folder.
20 lines
387 B
C++
20 lines
387 B
C++
#ifndef _HP_LEDGER_LEDGER_MOUNT_
|
|
#define _HP_LEDGER_LEDGER_MOUNT_
|
|
|
|
#include "../pchheader.hpp"
|
|
#include "../util/h32.hpp"
|
|
#include "../conf.hpp"
|
|
#include "../hpfs/hpfs_mount.hpp"
|
|
|
|
namespace ledger
|
|
{
|
|
/**
|
|
* Represents ledger file system mount.
|
|
*/
|
|
class ledger_mount : public hpfs::hpfs_mount
|
|
{
|
|
private:
|
|
int prepare_fs();
|
|
};
|
|
} // namespace ledger
|
|
#endif |