From 28f485a1d1163b378972708cd478f24e64384b3d Mon Sep 17 00:00:00 2001
From: Dave Collins <davec@conformal.com>
Date: Thu, 9 Jan 2014 11:36:25 -0600
Subject: [PATCH] Fix a couple of style nits.

---
 accept.go | 5 ++---
 chain.go  | 1 -
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/accept.go b/accept.go
index 764437ac..2e51279c 100644
--- a/accept.go
+++ b/accept.go
@@ -17,7 +17,6 @@ import (
 // The fastAdd argument modifies the behavior of the function by avoiding the
 // somewhat expensive operation: BIP34 validation, it also passes the argument
 // down to connectBestChain()
-
 func (b *BlockChain) maybeAcceptBlock(block *btcutil.Block, fastAdd bool) error {
 	// Get a block node for the block previous to this one.  Will be nil
 	// if this is the genesis block.
@@ -40,8 +39,7 @@ func (b *BlockChain) maybeAcceptBlock(block *btcutil.Block, fastAdd bool) error
 	if !fastAdd {
 		// Ensure the difficulty specified in the block header matches
 		// the calculated difficulty based on the previous block and
-		// difficulty
-		// retarget rules.
+		// difficulty retarget rules.
 		expectedDifficulty, err := b.calcNextRequiredDifficulty(prevNode, block)
 		if err != nil {
 			return err
@@ -78,6 +76,7 @@ func (b *BlockChain) maybeAcceptBlock(block *btcutil.Block, fastAdd bool) error
 		}
 
 	}
+
 	// Ensure chain matches up to predetermined checkpoints.
 	// It's safe to ignore the error on Sha since it's already cached.
 	blockHash, _ := block.Sha()
diff --git a/chain.go b/chain.go
index f47726c4..cf6dc532 100644
--- a/chain.go
+++ b/chain.go
@@ -876,7 +876,6 @@ func (b *BlockChain) reorganizeChain(detachNodes, attachNodes *list.List) error
 // cumulatively has the most proof of work.
 // The fastAdd argument avoids the call to checkConnectBlock which does
 // several expensive transaction validation operations.
-
 func (b *BlockChain) connectBestChain(node *blockNode, block *btcutil.Block, fastAdd bool) error {
 	// We haven't selected a best chain yet or we are extending the main
 	// (best) chain with a new block.  This is the most common case.