|
|
Bitcoin Core pruning mode is a feature that allows users to reduce the storage space required for the blockchain. By enabling pruning, you can delete older blockchain data while still validating new transactions. This helps save disk space without compromising security.
To use Bitcoin Core pruning mode, you need to set the prune parameter in the configuration file. For example, setting prune=550 will keep only the last 550 MB of blockchain data. This is ideal for users with limited storage capacity.
Overall, Bitcoin Core pruning mode is a practical solution for running a full node efficiently. It ensures that you contribute to the network without needing excessive storage resources. |
|