Move checkpoints.pl to util/

This commit is contained in:
Jonathan "Duke" Leto
2022-09-19 05:52:53 -07:00
parent 9bf09f353b
commit 84c9b786a7
5 changed files with 9 additions and 6 deletions

View File

@@ -63,7 +63,7 @@ Install deps on Linux:
- Make sure to keep the values in configure.ac and src/clientversion.h the same. The variables are prefixed wth an underscore in configure.ac
- Run ./contrib/devtools/gen-manpages.sh, commit + push results
- PROTIP: Man page creation must be done after updating the version number and recompiling and before Debian package creation
- Update checkpoints in src/chainparams.cpp via contrib/checkpoints.pl
- Update checkpoints in src/chainparams.cpp via util/checkpoints.pl
- checkpoints.pl will just generate the data you need, it must be manually copied into the correct place
- Checkpoint are a list of block heights and block hashes that tell a full node the correct block history of the blockchain
- Checkpoints make block verification a bit faster, because nodes can say "is this block a descendant of a checkpoint block" instead of doing full consensus checks, which take more time