305 | @@ -300,15 +306,15 @@ cat "$VERSION"/*/all.SHA256SUMS.asc > SHA256SUMS.asc
306 | Both variables are used as a guideline for how much space the user needs on their drive in total, not just strictly for the blockchain.
307 | Note that all values should be taken from a **fully synced** node and have an overhead of 5-10% added on top of its base value.
308 |
309 | -To calculate `m_assumed_blockchain_size`:
310 | -- For `mainnet` -> Take the size of the data directory, excluding `/regtest` and `/testnet3` directories.
311 | -- For `testnet` -> Take the size of the `/testnet3` directory.
312 | +To calculate `m_assumed_blockchain_size`, take the size in GiB of these directories:
313 | +- For `mainnet` -> the data directory, excluding the `/regtest`, `/signet`, and `/testnet3` directories and any overly large files, e.g. a huge `debug.log`
314 | +- For `testnet` -> `/testnet3`
No signet for m_assumed_blockchain_size? I mean, I guess it's way too small to be relevant at this point
m_assumed_blockchain_size = 1;
m_assumed_chain_state_size = 0;
But you do add it for m_assumed_chain_state_size below.