From 50de9da05b50eb15658bb350f6ea24368a111ab7 Mon Sep 17 00:00:00 2001 From: Alex Manuskin Date: Wed, 31 Jan 2018 10:40:46 +0200 Subject: [PATCH] blockchain: Fix typo in example_test.go. --- blockchain/example_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blockchain/example_test.go b/blockchain/example_test.go index c7163e0e..691d0927 100644 --- a/blockchain/example_test.go +++ b/blockchain/example_test.go @@ -18,7 +18,7 @@ import ( ) // This example demonstrates how to create a new chain instance and use -// ProcessBlock to attempt to attempt add a block to the chain. As the package +// ProcessBlock to attempt to add a block to the chain. As the package // overview documentation describes, this includes all of the Bitcoin consensus // rules. This example intentionally attempts to insert a duplicate genesis // block to illustrate how an invalid block is handled.