Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Fixing spelling.
Browse files Browse the repository at this point in the history
  • Loading branch information
Olivier Beddows committed Apr 10, 2016
1 parent 7b73f8d commit 5a91499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/blocks.js
Original file line number Diff line number Diff line change
Expand Up @@ -1168,7 +1168,7 @@ Blocks.prototype.onReceiveBlock = function (block) {

library.sequence.add(function (cb) {
if (block.previousBlock == private.lastBlock.id && private.lastBlock.height + 1 == block.height) {
library.logger.log('Recieved new block id: ' + block.id + ' height: ' + block.height + ' slot: ' + slots.getSlotNumber(block.timestamp) + ' reward: ' + modules.blocks.getLastBlock().reward)
library.logger.log('Received new block id: ' + block.id + ' height: ' + block.height + ' slot: ' + slots.getSlotNumber(block.timestamp) + ' reward: ' + modules.blocks.getLastBlock().reward)
self.processBlock(block, true, cb);
} else if (block.previousBlock != private.lastBlock.id && private.lastBlock.height + 1 == block.height) {
// Fork right height and different previous block
Expand Down

0 comments on commit 5a91499

Please sign in to comment.