Use consistent form for Checkpoint comment.

This commit is contained in:
Dave Collins 2013-07-27 16:46:46 -05:00
parent ace58495c8
commit 761f666c44

View file

@ -15,9 +15,9 @@ import (
// best block chain that a good checkpoint candidate must be. // best block chain that a good checkpoint candidate must be.
const CheckpointConfirmations = 2016 const CheckpointConfirmations = 2016
// A checkpoint is a known good point in the block chain. Using checkpoints // Checkpoint identifies a known good point in the block chain. Using
// allows a few optimizations for old blocks during initial download and also // checkpoints allows a few optimizations for old blocks during initial download
// prevents forks from old blocks. // and also prevents forks from old blocks.
// //
// Each checkpoint is selected by the core developers based upon several // Each checkpoint is selected by the core developers based upon several
// factors. See the documentation for IsCheckpointCandidate for details // factors. See the documentation for IsCheckpointCandidate for details