aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJustin <drakefjustin@gmail.com>2017-04-10 21:01:31 +0800
committerPéter Szilágyi <peterke@gmail.com>2017-04-10 21:01:31 +0800
commit542e42b21e777b24542e0e7b30ce641dd1df7b45 (patch)
treef95c3ec5beb66ba6537e65bd0ac6f959c4547b3d /core
parentfeeccdf4ec1084b38dac112ff4f86809efd7c0e5 (diff)
downloaddexon-542e42b21e777b24542e0e7b30ce641dd1df7b45.tar
dexon-542e42b21e777b24542e0e7b30ce641dd1df7b45.tar.gz
dexon-542e42b21e777b24542e0e7b30ce641dd1df7b45.tar.bz2
dexon-542e42b21e777b24542e0e7b30ce641dd1df7b45.tar.lz
dexon-542e42b21e777b24542e0e7b30ce641dd1df7b45.tar.xz
dexon-542e42b21e777b24542e0e7b30ce641dd1df7b45.tar.zst
dexon-542e42b21e777b24542e0e7b30ce641dd1df7b45.zip
core: fix comment typo
Diffstat (limited to 'core')
-rw-r--r--core/blockchain.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/blockchain.go b/core/blockchain.go
index b601c462c..d2232e50f 100644
--- a/core/blockchain.go
+++ b/core/blockchain.go
@@ -113,7 +113,7 @@ type BlockChain struct {
}
// NewBlockChain returns a fully initialised block chain using information
-// available in the database. It initialiser the default Ethereum Validator and
+// available in the database. It initialises the default Ethereum Validator and
// Processor.
func NewBlockChain(chainDb ethdb.Database, config *params.ChainConfig, engine consensus.Engine, mux *event.TypeMux, vmConfig vm.Config) (*BlockChain, error) {
bodyCache, _ := lru.New(bodyCacheLimit)