From 2c4e1ad48e3c9585b22ed8a261271f96d661ca86 Mon Sep 17 00:00:00 2001 From: Ricardo Domingos Date: Tue, 21 Nov 2017 22:31:01 +0100 Subject: [PATCH] miner: fix typo in comment --- miner/unconfirmed.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miner/unconfirmed.go b/miner/unconfirmed.go index ee52d8512f..7a4fc7cc5a 100644 --- a/miner/unconfirmed.go +++ b/miner/unconfirmed.go @@ -42,7 +42,7 @@ type unconfirmedBlock struct { // unconfirmedBlocks implements a data structure to maintain locally mined blocks // have have not yet reached enough maturity to guarantee chain inclusion. It is // used by the miner to provide logs to the user when a previously mined block -// has a high enough guarantee to not be reorged out of te canonical chain. +// has a high enough guarantee to not be reorged out of the canonical chain. type unconfirmedBlocks struct { chain headerRetriever // Blockchain to verify canonical status through depth uint // Depth after which to discard previous blocks