diff options
author | marcoagner <marco@agner.io> | 2018-10-07 13:11:36 +0100 |
---|---|---|
committer | marcoagner <marco@agner.io> | 2018-10-07 13:11:36 +0100 |
commit | 9d0e52834bbd38e7c7410bcb09ef85d157968b04 (patch) | |
tree | d21d966862cd2f0e7fd3f2c8da1b8ee6af7e1459 /src/interfaces/node.h | |
parent | f504a1402afd0760e9d348ecc8bad0094aa7d705 (diff) |
implements different disk sizes for different networks on intro
- Creates m_assumed_blockchain_size and m_assumed_chain_state_size on CChainParams.
- Implements access to CChainParams' m_assumed_blockchain_size and m_assumed_chain_state_size on node interface.
- Implements m_assumed_blockchain_size and m_assumed_chain_state_size on qt/intro via node interface.
- Updates release process document with the new CChainParam's values.
Diffstat (limited to 'src/interfaces/node.h')
-rw-r--r-- | src/interfaces/node.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/interfaces/node.h b/src/interfaces/node.h index 8185c015a9..6060d8e74d 100644 --- a/src/interfaces/node.h +++ b/src/interfaces/node.h @@ -52,6 +52,12 @@ public: //! Choose network parameters. virtual void selectParams(const std::string& network) = 0; + //! Get the (assumed) blockchain size. + virtual uint64_t getAssumedBlockchainSize() = 0; + + //! Get the (assumed) chain state size. + virtual uint64_t getAssumedChainStateSize() = 0; + //! Get network name. virtual std::string getNetwork() = 0; |