aboutsummaryrefslogtreecommitdiffstats
path: root/consensus/consensus.go
diff options
context:
space:
mode:
authorult-bobonovski <alex@ultiledger.io>2018-09-03 22:49:00 +0800
committerFelix Lange <fjl@users.noreply.github.com>2018-09-03 22:49:00 +0800
commit992b77992f5da7c0301c1b4f8203e8f0d3dfb8f4 (patch)
tree42c3f34f2af602fe3cd4673c8e3a21a77f2e9898 /consensus/consensus.go
parent5c0954afffe223ea61ea42dbc74ec7dbdc3663a1 (diff)
downloadgo-tangerine-992b77992f5da7c0301c1b4f8203e8f0d3dfb8f4.tar
go-tangerine-992b77992f5da7c0301c1b4f8203e8f0d3dfb8f4.tar.gz
go-tangerine-992b77992f5da7c0301c1b4f8203e8f0d3dfb8f4.tar.bz2
go-tangerine-992b77992f5da7c0301c1b4f8203e8f0d3dfb8f4.tar.lz
go-tangerine-992b77992f5da7c0301c1b4f8203e8f0d3dfb8f4.tar.xz
go-tangerine-992b77992f5da7c0301c1b4f8203e8f0d3dfb8f4.tar.zst
go-tangerine-992b77992f5da7c0301c1b4f8203e8f0d3dfb8f4.zip
consensus: fix comment typo (#17562)
Diffstat (limited to 'consensus/consensus.go')
-rw-r--r--consensus/consensus.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/consensus/consensus.go b/consensus/consensus.go
index 12ede7ff4..487b07be7 100644
--- a/consensus/consensus.go
+++ b/consensus/consensus.go
@@ -90,7 +90,7 @@ type Engine interface {
// the result into the given channel.
//
// Note, the method returns immediately and will send the result async. More
- // than one result may also be returned depending on the consensus algorothm.
+ // than one result may also be returned depending on the consensus algorithm.
Seal(chain ChainReader, block *types.Block, results chan<- *types.Block, stop <-chan struct{}) error
// SealHash returns the hash of a block prior to it being sealed.