aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2016-03-16 17:22:33 +0800
committerPéter Szilágyi <peterke@gmail.com>2016-03-16 17:22:33 +0800
commit2855a93ede6e9437d05a82c2397d48744621db9b (patch)
treed6f6abaf430f6e1fe4e604d6fdd1067dd973fbd3 /core
parentb5cee9738b6ec8d9832773a45878eab3bb761391 (diff)
parentc7727191ae8c22a4ce0932fa7f2c88715c6ff7d0 (diff)
downloaddexon-2855a93ede6e9437d05a82c2397d48744621db9b.tar
dexon-2855a93ede6e9437d05a82c2397d48744621db9b.tar.gz
dexon-2855a93ede6e9437d05a82c2397d48744621db9b.tar.bz2
dexon-2855a93ede6e9437d05a82c2397d48744621db9b.tar.lz
dexon-2855a93ede6e9437d05a82c2397d48744621db9b.tar.xz
dexon-2855a93ede6e9437d05a82c2397d48744621db9b.tar.zst
dexon-2855a93ede6e9437d05a82c2397d48744621db9b.zip
Merge pull request #2341 from leijurv/patch-2
core: fixed various typos
Diffstat (limited to 'core')
-rw-r--r--core/blockchain.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/blockchain.go b/core/blockchain.go
index 55034d9de..534318ecd 100644
--- a/core/blockchain.go
+++ b/core/blockchain.go
@@ -99,7 +99,7 @@ type BlockChain struct {
futureBlocks *lru.Cache // future blocks are blocks added for later processing
quit chan struct{} // blockchain quit channel
- running int32 // running must be called automically
+ running int32 // running must be called atomically
// procInterrupt must be atomically called
procInterrupt int32 // interrupt signaler for block processing
wg sync.WaitGroup // chain processing wait group for shutting down
@@ -792,7 +792,7 @@ func (self *BlockChain) WriteBlock(block *types.Block) (status WriteStatus, err
glog.Fatalf("failed to write block total difficulty: %v", err)
}
if err := WriteBlock(self.chainDb, block); err != nil {
- glog.Fatalf("filed to write block contents: %v", err)
+ glog.Fatalf("failed to write block contents: %v", err)
}
self.futureBlocks.Remove(block.Hash())
@@ -1134,7 +1134,7 @@ func reportBlock(block *types.Block, err error) {
//
// The verify parameter can be used to fine tune whether nonce verification
// should be done or not. The reason behind the optional check is because some
-// of the header retrieval mechanisms already need to verfy nonces, as well as
+// of the header retrieval mechanisms already need to verify nonces, as well as
// because nonces can be verified sparsely, not needing to check each.
func (self *BlockChain) InsertHeaderChain(chain []*types.Header, checkFreq int) (int, error) {
// Make sure only one thread manipulates the chain at once