From 761f666c4483b88da84d670f3ff86af1774d1708 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Sat, 27 Jul 2013 16:46:46 -0500 Subject: [PATCH] Use consistent form for Checkpoint comment. --- checkpoints.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/checkpoints.go b/checkpoints.go index 3bfce683..818b2fb9 100644 --- a/checkpoints.go +++ b/checkpoints.go @@ -15,9 +15,9 @@ import ( // best block chain that a good checkpoint candidate must be. const CheckpointConfirmations = 2016 -// A checkpoint is a known good point in the block chain. Using checkpoints -// allows a few optimizations for old blocks during initial download and also -// prevents forks from old blocks. +// Checkpoint identifies a known good point in the block chain. Using +// checkpoints allows a few optimizations for old blocks during initial download +// and also prevents forks from old blocks. // // Each checkpoint is selected by the core developers based upon several // factors. See the documentation for IsCheckpointCandidate for details